From: Martin Taibr Date: Wed, 20 Sep 2017 03:34:38 +0000 (+0200) Subject: prevent uncrustify crash X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=38812a3bc878ce079b875392d0e34a0f25bb3974;p=xonotic%2Fxonotic-data.pk3dir.git prevent uncrustify crash --- diff --git a/qcsrc/lib/compiler.qh b/qcsrc/lib/compiler.qh index d1bdc4fe5..fc5fa0fe6 100644 --- a/qcsrc/lib/compiler.qh +++ b/qcsrc/lib/compiler.qh @@ -18,8 +18,11 @@ #endif #endif +// uncrustify segfaults on this +// *INDENT-OFF* #ifdef GMQCC - #define LABEL(id) :id + #define LABEL(id) :id #else - #define LABEL(id) id: + #define LABEL(id) id: #endif +// *INDENT_ON*