diff options
author | Ninni Pipping <over999ships@gmail.com> | 2023-08-08 17:51:55 +0200 |
---|---|---|
committer | Ninni Pipping <over999ships@gmail.com> | 2023-08-09 10:04:53 +0200 |
commit | 6ca1432daf8e8593747e94f4ca2c98a76f2ca660 (patch) | |
tree | ff5448781f09939380aaaf33e7531959624d273a /tests/servers | |
parent | f7bc653cbe81018fe362472a0143b7153a52f929 (diff) | |
download | redot-engine-6ca1432daf8e8593747e94f4ca2c98a76f2ca660.tar.gz |
Remove use of `std::string` in test
Avoiding using the standard library here
Diffstat (limited to 'tests/servers')
-rw-r--r-- | tests/servers/rendering/test_shader_preprocessor.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/servers/rendering/test_shader_preprocessor.h b/tests/servers/rendering/test_shader_preprocessor.h index 41a009ccf5..d65eb522e8 100644 --- a/tests/servers/rendering/test_shader_preprocessor.h +++ b/tests/servers/rendering/test_shader_preprocessor.h @@ -52,8 +52,7 @@ bool is_variable_char(unsigned char c) { } bool is_operator_char(unsigned char c) { - static const std::string operators = "<>=+-*/"; - return operators.find(c) != std::string::npos; + return (c == '*') || (c == '+') || (c == '-') || (c == '/') || ((c >= '<') && (c <= '>')); } // Remove unnecessary spaces from a line. |