Commits

Dan Raviv committed 5124ff1bb67
Fix getAsOpaquePointer method const-correctness In order for the method to be const, it should cast its Pointer member to a const void* and return it as such, not as a void*. This wasn't caught before due to using a C-style cast which stripped away the member's constness implicitly.