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 1e5e3e0 commit d6b21cfCopy full SHA for d6b21cf
lib/inc/sys_string/impl/unicode/utf_util.h
@@ -123,8 +123,8 @@ namespace sysstr
123
{
124
utf_codepoint_encoder<To, false> encoder;
125
encoder.put(value);
126
- for(auto first = encoder.begin(), last = encoder.end(); first != last; ++first)
127
- sink(*first);
+ for(auto c: encoder)
+ sink(c);
128
}
129
else
130
lib/inc/sys_string/impl/util/util.h
@@ -14,6 +14,7 @@
14
#include <ranges>
15
#include <algorithm>
16
#include <tuple>
17
+#include <cstdarg>
18
19
namespace sysstr::util
20
0 commit comments