File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -798,7 +798,7 @@ class serializer_test
798
798
check_udt (i, " -1" );
799
799
800
800
double d = 3.12 ;
801
- check_udt (d, " 3.12E0 " );
801
+ check_udt (d, " 3.12e+00 " );
802
802
803
803
#if defined(BOOST_HAS_INT128) && defined(__GLIBCXX_TYPE_INT_N_0)
804
804
boost::int128_type ii =
@@ -838,7 +838,7 @@ class serializer_test
838
838
#ifdef BOOST_DESCRIBE_CXX14
839
839
{
840
840
serializer_test_ns::my_struct s{" some string" , 1424 , 12.4 };
841
- check_udt (s, R"( {"s":"some string","n":1424,"d":1.24E1 })" );
841
+ check_udt (s, R"( {"s":"some string","n":1424,"d":1.24e+01 })" );
842
842
}
843
843
{
844
844
check_udt (
@@ -853,7 +853,7 @@ class serializer_test
853
853
check_udt ( v, " 112" );
854
854
855
855
v = 0.5 ;
856
- check_udt ( v, " 5E-1 " );
856
+ check_udt ( v, " 5e-01 " );
857
857
858
858
v = " this is a string" ;
859
859
check_udt (v, R"( "this is a string")" );
You can’t perform that action at this time.
0 commit comments