From f1e781fe5251d48a04816dc4c4aea86979f6d476 Mon Sep 17 00:00:00 2001 From: neargye Date: Tue, 28 May 2019 17:53:26 +0500 Subject: [PATCH] update include guard --- include/magic_enum.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/magic_enum.hpp b/include/magic_enum.hpp index 8ea4357..f43b3e8 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -29,8 +29,8 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. -#ifndef MAGIC_ENUM_HPP -#define MAGIC_ENUM_HPP +#ifndef NEARGYE_MAGIC_ENUM_HPP +#define NEARGYE_MAGIC_ENUM_HPP #include #include @@ -364,4 +364,4 @@ std::basic_ostream& operator<<(std::basic_ostream& o } // namespace magic_enum -#endif // MAGIC_ENUM_HPP +#endif // NEARGYE_MAGIC_ENUM_HPP