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
./src/Test.cpp: In static member function ‘static void Test_obj::main()’:
./src/Test.cpp:29:55: error: type/value mismatch at argument 1 in template parameter list for ‘template<class T> class cpp::Pointer’
HXLINE( 3) HX_VARI( ::cpp::Pointer< ::std::vector >,i) = ::cpp::Pointer_obj::fromRaw((new std::vector<int>()));
because
HX_VARI( ::cpp::Pointer< ::std::vector >,i)
should be
HX_VARI( ::cpp::Pointer< ::std::vector<int> >,i)
The text was updated successfully, but these errors were encountered:
Trying to define an extern for a templated class.
For instance,
std::vector
(not specific to this class):gives:
because
HX_VARI( ::cpp::Pointer< ::std::vector >,i)
should be
The text was updated successfully, but these errors were encountered: