Skip to content

Commit 09239fe

Browse files
committed
Fix another warning from MSVC
1 parent 135704f commit 09239fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/tao/json/stream.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace tao
1919
template< template< typename... > class Traits >
2020
std::ostream& operator<<( std::ostream& o, const basic_value< Traits >& v )
2121
{
22-
const auto w = o.width( 0 );
22+
const std::uint64_t w = o.width( 0 );
2323
if( w > 0 ) {
2424
json::to_stream( o, v, w );
2525
}

0 commit comments

Comments
 (0)