Skip to content

Commit

Permalink
Fix another compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Nov 22, 2020
1 parent d2d64df commit 0a740a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tao/json/contrib/vector_bool_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace tao::json
v.emplace_array();
v.get_array().reserve( o.size() );
for( const auto e : o ) {
v.emplace_back( e );
v.emplace_back( bool( e ) );
}
}

Expand Down

0 comments on commit 0a740a5

Please sign in to comment.