More signed overflow avoidance

This commit is contained in:
Peter Dimov
2019-04-28 06:37:29 +03:00
parent dad7086b37
commit 8200306bf1

View File

@ -138,7 +138,7 @@ template<class T> void test( T const& x )
int main()
{
test( 0xF1F2 );
test( 0x7EF2 );
test( 0x01020304u );
return boost::report_errors();