Skip to content

Commit 9c9ddab

Browse files
authored
Merge pull request #355 from qicosmos/fix_for_mac
2 parents 9932504 + a536dd0 commit 9c9ddab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/linux-gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
matrix:
4040
mode: [ Debug, Release ]
4141
cpp_version: [17]
42-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-22.04
4343

4444
steps:
4545
- name: check out

iguana/detail/itoa.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ struct convert {
219219
template <typename U, std::enable_if_t<!std::is_signed<U>::value &&
220220
std::is_integral<U>::value>* = nullptr>
221221
static inline char* itoa(U u, char* p) {
222-
return convert<D>::template itoa(p, u);
222+
return convert<D>::template itoa<>(p, u);
223223
}
224224

225225
// itoa: handle signed integral operands (selected by SFINAE)
@@ -257,7 +257,7 @@ struct convert {
257257
*p = '-';
258258
p += (mask & 1);
259259
}
260-
p = convert<D>::template itoa(p, u);
260+
p = convert<D>::template itoa<>(p, u);
261261
if (D == Rev && mask)
262262
*--p = '-';
263263
return p;

0 commit comments

Comments
 (0)