Skip to content

Instantly share code, notes, and snippets.

@cleak
Created January 21, 2019 05:49
Show Gist options
  • Save cleak/122306c8dbab913e811ff892d27472f0 to your computer and use it in GitHub Desktop.
Save cleak/122306c8dbab913e811ff892d27472f0 to your computer and use it in GitHub Desktop.
template <typename T>
void** GetVTable(T* obj) {
return *((void***)obj);
}
@md2perpe
Copy link

Will you get a type error (or warning) if you just use

template <typename T>
void** GetVTable(T* obj) {
  return *((void*)obj);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment