summaryrefslogtreecommitdiff
path: root/main/tests
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-03-04 13:18:48 +0100
committerGitHub <noreply@github.com>2020-03-04 13:18:48 +0100
commit2856740e6b238576273a321a125e9d92b687fdb2 (patch)
treee37ece76fc1cc5bc8324fdf645816b2680b0bfc1 /main/tests
parent98f88a4102980e952b30da41f4887fab44ddbdd7 (diff)
parentc933eb7accce31e74a244ea5ed0c6bd5b0aa14ca (diff)
Merge pull request #36385 from kuruk-mm/some_static_asserts
Change when we can ERR_FAIL_COND and ERR_FAIL_CONV_V to static_assert
Diffstat (limited to 'main/tests')
-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;