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
Here the __1 is an inline namespace that libc++ uses, and compiles correctly. However, the __1 should be removed (to give simply std::complex<double>), otherwise there is an error when compiling using libstdc++.
When I run c++2py on a function in a class method that returns a complex array I get:
Here the
__1
is an inline namespace that libc++ uses, and compiles correctly. However, the__1
should be removed (to give simplystd::complex<double>
), otherwise there is an error when compiling using libstdc++.Questions:
How are inline namespaces treated by c++2py?
Is the stripping of inline namespaces also done for compound return types? (see also Qualification in compound return types #28 ).
The text was updated successfully, but these errors were encountered: