summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMateo Dev .59 <mateomiccino@gmail.com>2020-02-20 11:13:08 -0300
committerMateo Miccino <mateomiccino@gmail.com>2020-03-04 04:44:47 -0300
commitc933eb7accce31e74a244ea5ed0c6bd5b0aa14ca (patch)
tree23d41339ad6aaf7a4f1c27901ffef3d5102ea920 /main
parentaee36ec01b346a9b1bef607eb0b66722f58eeca1 (diff)
Change when we can ERR_FAIL_COND and ERR_FAIL_CONV_V to static_assert
Diffstat (limited to 'main')
-rw-r--r--main/tests/test_string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/test_string.cpp b/main/tests/test_string.cpp
index eef3d9b84c..84731746fa 100644
--- a/main/tests/test_string.cpp
+++ b/main/tests/test_string.cpp
@@ -1172,7 +1172,7 @@ MainLoop *test() {
/** A character length != wchar_t may be forced, so the tests won't work */
- ERR_FAIL_COND_V(sizeof(CharType) != sizeof(wchar_t), NULL);
+ static_assert(sizeof(CharType) == sizeof(wchar_t));
int count = 0;
int passed = 0;