summaryrefslogtreecommitdiffstats
path: root/tests/servers
diff options
context:
space:
mode:
authorNinni Pipping <over999ships@gmail.com>2023-08-08 17:51:55 +0200
committerNinni Pipping <over999ships@gmail.com>2023-08-09 10:04:53 +0200
commit6ca1432daf8e8593747e94f4ca2c98a76f2ca660 (patch)
treeff5448781f09939380aaaf33e7531959624d273a /tests/servers
parentf7bc653cbe81018fe362472a0143b7153a52f929 (diff)
downloadredot-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.h3
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.