Skip to content

Commit

Permalink
Consistent naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Sep 20, 2023
1 parent 32f4d55 commit 0d15222
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/tao/json/external/itoa.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,18 @@ namespace tao::json::itoa
return u64toa( n, b );
}

inline void i64tos( std::ostream& o, const std::int64_t i )
inline void i64tos( std::ostream& os, const std::int64_t i )
{
char b[ 24 ];
const auto* s = i64toa( i, b );
o.write( b, s - b );
os.write( b, s - b );
}

inline void u64tos( std::ostream& o, const std::uint64_t i )
inline void u64tos( std::ostream& os, const std::uint64_t i )
{
char b[ 24 ];
const auto* s = u64toa( i, b );
o.write( b, s - b );
os.write( b, s - b );
}

} // namespace tao::json::itoa
Expand Down

0 comments on commit 0d15222

Please sign in to comment.