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
When compiling a code like this:
template<class Reference> auto operator+(Reference&& ref) ->decltype(array(std::forward<Reference>(ref))) { return array(std::forward<Reference>(ref)); }
https://gitlab.com/correaa/boost-multi/-/blob/master/include/boost/multi/array.hpp?ref_type=heads#L1555
I get this warning from the compiler "mangle of arg not implemened":
[1/140] ccache /home/correaa/bin/circle -DTBB_FOUND=1 -DTBB_USE_DEBUG -I/home/correaa/boost-multi/include -g -Werror -Wall -MD -MT test/CMakeFiles/allocator.cpp.x.dir/allocator.cpp.o -MF test/CMakeFiles/allocator.cpp.x.dir/allocator.cpp.o.d -o test/CMakeFiles/allocator.cpp.x.dir/allocator.cpp.o -c /home/correaa/boost-multi/test/allocator.cpp ../include/boost/multi/array.hpp:1555:17 mangle of arg not implemened../include/boost/multi/array.hpp:1555:17
https://gitlab.com/correaa/boost-multi/-/jobs/8149345102#L644
This happens with circle 221. The program seems to still compile, run and work though.
At the minimum, the warning message is not well formatted when printed in the screen. (It also has a typo).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When compiling a code like this:
https://gitlab.com/correaa/boost-multi/-/blob/master/include/boost/multi/array.hpp?ref_type=heads#L1555
I get this warning from the compiler "mangle of arg not implemened":
https://gitlab.com/correaa/boost-multi/-/jobs/8149345102#L644
This happens with circle 221.
The program seems to still compile, run and work though.
At the minimum, the warning message is not well formatted when printed in the screen. (It also has a typo).
The text was updated successfully, but these errors were encountered: