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
The compiler always complain about the ForeignClassRef not defined: " error C2065: 'xxxxObjectRef': undeclared identifier"
Fix can be add to the RustForeignxxxx.h
template <bool> class xxxxObjectWrapper; using xxxxObject = xxxxObjectWrapper<true>; using xxxxObjectRef = xxxxObjectWrapper<false>;
The text was updated successfully, but these errors were encountered:
For now you always need include "Object.hpp" include before "ObjectRustForeignVec.h", like this:
#include "rust_interface/Foo.hpp" #include "rust_interface/RustForeignVecFoo.h"
I am most certainly fix this as part of #175
Sorry, something went wrong.
No branches or pull requests
The compiler always complain about the ForeignClassRef not defined:
" error C2065: 'xxxxObjectRef': undeclared identifier"
Fix can be add to the RustForeignxxxx.h
The text was updated successfully, but these errors were encountered: