Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
trying to find if reinterpret_cast preserves calling convention
#include <type_traits> #include <iostream> void * (__vectorcall *a)(unsigned); void * (__cdecl *b)(unsigned); using T = decltype(reinterpret_cast<char * (*)(unsigned)>(a)); using U = decltype(reinterpret_cast<char * (*)(unsigned)>(b)); int main() { std::cout << typeid(T).name() << '\n' << typeid(U).name() << std::endl; return 0; }
run
|
edit
|
history
|
help
0
CStringA
why fatal error C1083
wall
upper_bound With binary_function Visual Studio 2008 Bug?
hgh
hangman
PRIx64 on MSVC
namespace name resolution
Hangman
cv4_template