summaryrefslogtreecommitdiff
path: root/main/tests/test_math.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main/tests/test_math.cpp')
-rw-r--r--main/tests/test_math.cpp20
1 files changed, 15 insertions, 5 deletions
diff --git a/main/tests/test_math.cpp b/main/tests/test_math.cpp
index 3a95581720..d0bebaad72 100644
--- a/main/tests/test_math.cpp
+++ b/main/tests/test_math.cpp
@@ -199,14 +199,24 @@ class GetClassAndNamespace {
switch (next) {
- case 'b': res = 8; break;
- case 't': res = 9; break;
- case 'n': res = 10; break;
- case 'f': res = 12; break;
+ case 'b':
+ res = 8;
+ break;
+ case 't':
+ res = 9;
+ break;
+ case 'n':
+ res = 10;
+ break;
+ case 'f':
+ res = 12;
+ break;
case 'r':
res = 13;
break;
- case '\"': res = '\"'; break;
+ case '\"':
+ res = '\"';
+ break;
case '\\':
res = '\\';
break;