Skip to content

Commit 3b59a33

Browse files
committed
Fix an llvm syntax warning.
1 parent c4d78e5 commit 3b59a33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

avs_core/core/parser/scriptparser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class ScriptParser
9999
// Originally, non-conformant multi-character characters were used.
100100
// For example: int('012') == 0x303132. Hence, the rightmost character
101101
// is placed at the least significant byte.
102-
static constexpr int operator "" _i(const char s[], const size_t len) {
102+
static constexpr int operator ""_i(const char s[], const size_t len) {
103103
int acc = 0;
104104
for (size_t i = 0; i < len; ++i)
105105
acc = (acc << 8) + (unsigned char) s[i];

0 commit comments

Comments
 (0)