On 10.03.20 03:35, Leo Carreon via Boost-users wrote: > Hi Boost Users, > > Does anyone know what BOOST_TEST_STRING_VIEW is for? > > Kind regards, > Leo
This is a "define" that indicates that string view comparison is supported in Boost.Test (as any string type comparison within BOOST_TEST macro). It does not go to the ABI of Boost.Test, and is evaluated during the compilation of the test module. Raffi _______________________________________________ Boost-users mailing list [email protected] https://lists.boost.org/mailman/listinfo.cgi/boost-users
