]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix last uncrustify warning
authorMartin Taibr <taibr.martin@gmail.com>
Sat, 23 Sep 2017 16:10:58 +0000 (18:10 +0200)
committerMartin Taibr <taibr.martin@gmail.com>
Sat, 23 Sep 2017 16:10:58 +0000 (18:10 +0200)
qcsrc/lib/enumclass.qh

index 532db1deb613bad7d39293f39b458fe437f416d1..86948075b1c0078f6b874edb7b2813c6f4723836 100644 (file)
@@ -8,11 +8,13 @@
 
 // zero overhead mode, use this for releases
 
+// *INDENT-OFF* uncrustify doesn't like the braces in different macros
 #define ENUMCLASS(id) USING(id, int); enum { CASE(id, Null)
 #define CASE(class, id) class##_##id,
 #define ENUMCLASS_END(id) };
 #define ORDINAL(it) (it)
 #define ENUMCAST(T, it) (it)
+// *INDENT-ON*
 
 #else