From 40664f16e3abdec2371010137cf68a65fa325448 Mon Sep 17 00:00:00 2001 From: Quentin Young Date: Thu, 16 Apr 2020 15:38:11 -0400 Subject: [PATCH] lib: suppress formatting on yang.c module array Signed-off-by: Quentin Young --- lib/yang.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/yang.c b/lib/yang.c index 081d85630..c80bf2030 100644 --- a/lib/yang.c +++ b/lib/yang.c @@ -72,6 +72,7 @@ static const char *yang_module_imp_clb(const char *mod_name, return NULL; } +/* clang-format off */ static const char *const frr_native_modules[] = { "frr-interface", "frr-vrf", @@ -81,6 +82,7 @@ static const char *const frr_native_modules[] = { "frr-vrrpd", "frr-zebra", }; +/* clang-format on */ /* Generate the yang_modules tree. */ static inline int yang_module_compare(const struct yang_module *a, -- 2.39.5