We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f4d55 commit 0d15222Copy full SHA for 0d15222
include/tao/json/external/itoa.hpp
@@ -132,18 +132,18 @@ namespace tao::json::itoa
132
return u64toa( n, b );
133
}
134
135
- inline void i64tos( std::ostream& o, const std::int64_t i )
+ inline void i64tos( std::ostream& os, const std::int64_t i )
136
{
137
char b[ 24 ];
138
const auto* s = i64toa( i, b );
139
- o.write( b, s - b );
+ os.write( b, s - b );
140
141
142
- inline void u64tos( std::ostream& o, const std::uint64_t i )
+ inline void u64tos( std::ostream& os, const std::uint64_t i )
143
144
145
const auto* s = u64toa( i, b );
146
147
148
149
} // namespace tao::json::itoa
0 commit comments