]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/iter.qh
semis after LAMBDA for uncrustify
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / iter.qh
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 */