From b79706d64d88f4789eaac01b6fb58603709de856 Mon Sep 17 00:00:00 2001 From: neargye Date: Wed, 1 May 2019 19:47:26 +0500 Subject: [PATCH] change include guard --- include/magic_enum.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/magic_enum.hpp b/include/magic_enum.hpp index 12ae221..ceb4a08 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -29,7 +29,8 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. -#pragma once +#ifndef MAGIC_ENUM_HPP +#define MAGIC_ENUM_HPP #include #include @@ -352,3 +353,5 @@ std::basic_ostream& operator<<(std::basic_ostream& o } // namespace magic_enum::ops } // namespace magic_enum + +#endif // MAGIC_ENUM_HPP