You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both C++ functions that use templates and member functions on templates classes go through a process known as depolymorphization.
This process creates numerous asm functions which collectively represent all possible instantions of those templates by the compiler.
We cannot reasonably ask users to detour into all of these instances individually. There must be some multi detour mechanism to automatically detour into all instances of a templated function.
Affects both clang and msvc
The text was updated successfully, but these errors were encountered:
Both C++ functions that use templates and member functions on templates classes go through a process known as depolymorphization.
This process creates numerous asm functions which collectively represent all possible instantions of those templates by the compiler.
We cannot reasonably ask users to detour into all of these instances individually. There must be some multi detour mechanism to automatically detour into all instances of a templated function.
Affects both clang and msvc
The text was updated successfully, but these errors were encountered: