We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4d78e5 commit 3b59a33Copy full SHA for 3b59a33
1 file changed
avs_core/core/parser/scriptparser.h
@@ -99,7 +99,7 @@ class ScriptParser
99
// Originally, non-conformant multi-character characters were used.
100
// For example: int('012') == 0x303132. Hence, the rightmost character
101
// is placed at the least significant byte.
102
-static constexpr int operator "" _i(const char s[], const size_t len) {
+static constexpr int operator ""_i(const char s[], const size_t len) {
103
int acc = 0;
104
for (size_t i = 0; i < len; ++i)
105
acc = (acc << 8) + (unsigned char) s[i];
0 commit comments