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
Compile and run the example (using x86_64 GCC 14.2, -std=c++20) -> The warnings show up when executing the test (and there are a few compiler warnings during the compilation but that is not the subject of this issue)
Change the include to #include <https://raw.githubusercontent.com/boost-experimental/ut/v2.0.0/include/boost/ut.hpp>
-> The warnings are gone
Change the include to #include <https://raw.githubusercontent.com/boost-experimental/ut/v2.1.0/include/boost/ut.hpp>
-> The warnings appear again.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Parameterized tests should work without warnings.
Actual Behavior
Parameterized tests result in warnings like
The tests seems to be run for all parameters, though, so the warnings seems to be harmless (?).
Steps to Reproduce the Problem
x86_64 GCC 14.2
,-std=c++20
) -> The warnings show up when executing the test (and there are a few compiler warnings during the compilation but that is not the subject of this issue)#include <https://raw.githubusercontent.com/boost-experimental/ut/v2.0.0/include/boost/ut.hpp>
-> The warnings are gone
#include <https://raw.githubusercontent.com/boost-experimental/ut/v2.1.0/include/boost/ut.hpp>
-> The warnings appear again.
The text was updated successfully, but these errors were encountered: