1
0
forked from Alepha/Alepha

Merge branch 'master' of github.com:adamlsd/Alepha

This commit is contained in:
2023-10-26 00:00:06 -04:00
20 changed files with 351 additions and 69 deletions

View File

@ -29,6 +29,8 @@ static_assert( __cplusplus > 2020'00 );
#include <Alepha/function_traits.h>
#include <Alepha/template_for_each.h>
#include <Alepha/IOStreams/Stream.h>
#include <Alepha/Utility/evaluation_helpers.h>
#include <Alepha/TotalOrder.h>
@ -122,7 +124,7 @@ namespace Alepha::Hydrogen::Testing ::detail:: table_test
}
else if constexpr( Meta::is_ostreamable_v< T > )
{
return boost::lexical_cast< std::string >( v );
return IOStreams::stringify( v );
}
else if constexpr( Meta::is_optional_v< T > )
{