From d65550f37858389b9f73c05f4a30b76001e810f8 Mon Sep 17 00:00:00 2001 From: Chris Heyes <22148308+hazeycode@users.noreply.github.com> Date: Sun, 7 Jan 2024 12:18:17 +0000 Subject: [PATCH] Turn off clang-format (#118) Turns off clang-format for easier usage in projects using it. --- enum.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/enum.h b/enum.h index 9232e9d..c89804b 100644 --- a/enum.h +++ b/enum.h @@ -1,6 +1,7 @@ // This file is part of Better Enums, released under the BSD 2-clause license. // See LICENSE.md for details, or visit http://github.com/aantron/better-enums. +// clang-format off #pragma once #ifndef BETTER_ENUMS_ENUM_H @@ -1324,3 +1325,4 @@ BETTER_ENUMS_CONSTEXPR_ map make_map(T (*f)(Enum)) } #endif // #ifndef BETTER_ENUMS_ENUM_H +// clang-format on