File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments