We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider the following example:
boostdll::experimental::smart_library lib; lib.load("test.dll"); int f(char a[]); decltype(f)* pf = lib.get_function<decltype(f)>("f");
This fails to find function f as it's demangled as int __cdecl f(char * __ptr64 const), but MSVC parser doesn't accept that trailing const
f
int __cdecl f(char * __ptr64 const)
const
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following example:
This fails to find function
f
as it's demangled asint __cdecl f(char * __ptr64 const)
, but MSVC parser doesn't accept that trailingconst
The text was updated successfully, but these errors were encountered: