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 3e8a338 commit a9c55e6Copy full SHA for a9c55e6
include/ylt/standalone/iguana/detail/itoa.hpp
@@ -219,7 +219,7 @@ struct convert {
219
template <typename U, std::enable_if_t<!std::is_signed<U>::value &&
220
std::is_integral<U>::value>* = nullptr>
221
static inline char* itoa(U u, char* p) {
222
- return convert<D>::template itoa(p, u);
+ return convert<D>::template itoa<>(p, u);
223
}
224
225
// itoa: handle signed integral operands (selected by SFINAE)
@@ -257,7 +257,7 @@ struct convert {
257
*p = '-';
258
p += (mask & 1);
259
260
- p = convert<D>::template itoa(p, u);
+ p = convert<D>::template itoa<>(p, u);
261
if (D == Rev && mask)
262
*--p = '-';
263
return p;
0 commit comments