From ec7cbe2a185fe5976103fd6d62c55e3fe0856a6e Mon Sep 17 00:00:00 2001 From: Snaipe Date: Mon, 5 Sep 2016 20:45:46 +0200 Subject: [PATCH] style: disable indent for delicate places --- src/protocol/protocol.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/protocol/protocol.h b/src/protocol/protocol.h index 5ab118c..d16526c 100644 --- a/src/protocol/protocol.h +++ b/src/protocol/protocol.h @@ -47,6 +47,8 @@ extern volatile bool is_extern_worker; } \ } while (0) +/* *INDENT-OFF* - remove when https://github.com/uncrustify/uncrustify/issues/667 + gets fixed */ # define criterion_message(Kind, ...) \ (criterion_protocol_msg) { \ .version = PROTOCOL_V1, \ @@ -64,5 +66,6 @@ extern volatile bool is_extern_worker; } \ } \ } +/* *INDENT-ON* */ #endif /* !PROTOCOL_H_ */