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
#include <vector>
namespace a {
class A {
std::vector<int> v;
};
}
SWIG 2:
error: ‘std’ in namespace ‘a’ does not name a type
SWIGINTERN a::std::vector< int >::size_type std_vector_Sl_int_Sg____len__(std::vector< int > const *self){
^
SWIG 4:
Error: 'std::vector' resolves to 'std::vector' and was incorrectly instantiated in scope 'a' instead of within scope 'std'.
With
TRICK_CONVERT_SWIG_FLAGS
set to-s
:SWIG 2:
SWIG 4:
This is due to #768
The text was updated successfully, but these errors were encountered: