Skip to content

Commit 0d15222

Browse files
committed
Consistent naming.
1 parent 32f4d55 commit 0d15222

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/tao/json/external/itoa.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,18 +132,18 @@ namespace tao::json::itoa
132132
return u64toa( n, b );
133133
}
134134

135-
inline void i64tos( std::ostream& o, const std::int64_t i )
135+
inline void i64tos( std::ostream& os, const std::int64_t i )
136136
{
137137
char b[ 24 ];
138138
const auto* s = i64toa( i, b );
139-
o.write( b, s - b );
139+
os.write( b, s - b );
140140
}
141141

142-
inline void u64tos( std::ostream& o, const std::uint64_t i )
142+
inline void u64tos( std::ostream& os, const std::uint64_t i )
143143
{
144144
char b[ 24 ];
145145
const auto* s = u64toa( i, b );
146-
o.write( b, s - b );
146+
os.write( b, s - b );
147147
}
148148

149149
} // namespace tao::json::itoa

0 commit comments

Comments
 (0)