]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
semis after LAMBDA for uncrustify
authorMartin Taibr <taibr.martin@gmail.com>
Fri, 22 Sep 2017 03:40:26 +0000 (05:40 +0200)
committerMartin Taibr <taibr.martin@gmail.com>
Fri, 22 Sep 2017 03:40:26 +0000 (05:40 +0200)
qcsrc/lib/intrusivelist.qh
qcsrc/lib/iter.qh
qcsrc/server/utils.qh

index 9b721a9ba42e96add17111001747949bc89763f0..05021d5343e9e662a75a9af835d0cb677a4e2c6e 100644 (file)
@@ -172,7 +172,7 @@ void IL_REMOVE(IntrusiveList this, entity it)
                { \
                        const noref entity it = _it; \
                        _next = it.(il_next); \
-                       if (cond) { LAMBDA(body) } \
+                       if (cond) { LAMBDA(body); } \
                } \
        MACRO_END
 
index 798d858743dc290031f9c40dc056c63474aa77ea..7a284e2de1ae3e69b67aa65aa836ea930124d7cf 100644 (file)
@@ -12,7 +12,7 @@
                { \
                        const noref int i = _i; \
                        ITER_CONST noref entity it = arr[i]; \
-                       if (cond) { LAMBDA(body) } \
+                       if (cond) { LAMBDA(body); } \
                } \
        MACRO_END
 
@@ -26,7 +26,7 @@
                        const noref int i = _i; \
                        ITER_CONST noref entity it = _it; \
                        _next = _it.next; \
-                       if (cond) { LAMBDA(body) } \
+                       if (cond) { LAMBDA(body); } \
                } \
        MACRO_END
 
@@ -38,7 +38,7 @@
                { \
                        const noref int i = _i; \
                        const noref string it = _it; \
-                       if (cond) { LAMBDA(body) } \
+                       if (cond) { LAMBDA(body); } \
                } \
        MACRO_END
 
@@ -66,7 +66,7 @@
                while ((_it = STRING_ITERATOR_GET(iter)) > 0) \
                { \
                        const noref int it = _it; \
-                       if (cond) { LAMBDA(body) } \
+                       if (cond) { LAMBDA(body); } \
                } \
        MACRO_END
 
         { \
             const noref int i = _i; \
             ITER_CONST noref entity it = _it; \
-            if (cond) LAMBDA(body) \
+            if (cond) LAMBDA(body); \
         } \
     MACRO_END
 #define MUTEX_LOCK(this) MACRO_BEGIN \
@@ -142,7 +142,7 @@ MACRO_END
                { \
                        const noref int i = _i; \
                        ITER_CONST noref entity it = _it; \
-                       if (cond) LAMBDA(body) \
+                       if (cond) LAMBDA(body); \
                } \
        MACRO_END
 /** marker field, always NULL */
index 092b21a78807c996c154b813eed373707b44bfdc..abc156ae0942de8f82b6747b8daa2a8d05ce9ffb 100644 (file)
@@ -37,7 +37,7 @@ const string STR_OBSERVER = "observer";
                { \
                        const noref int i = _i; \
                        ITER_CONST noref entity it = ftoe(i); \
-                       if(cond) { LAMBDA(body) } \
+                       if(cond) { LAMBDA(body); } \
                } \
        MACRO_END
 
@@ -69,7 +69,7 @@ bool _FCR_entered = false;
                { \
                        const noref int i = _i; \
                        ITER_CONST noref entity it = _FCR_clients[i]; \
-                       if (cond) { LAMBDA(body) } \
+                       if (cond) { LAMBDA(body); } \
                } \
                _FCR_entered = false; \
        MACRO_END