From 0739d50370a4f5d15f1be268ccd23d2ca23587ff Mon Sep 17 00:00:00 2001 From: Bingran Hu Date: Sat, 22 Mar 2025 02:45:52 -0400 Subject: [PATCH] Fix ystdlib::containers::Array header file guard --- src/ystdlib/containers/Array.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ystdlib/containers/Array.hpp b/src/ystdlib/containers/Array.hpp index 38e2c50e..c46b49c9 100644 --- a/src/ystdlib/containers/Array.hpp +++ b/src/ystdlib/containers/Array.hpp @@ -1,5 +1,5 @@ -#ifndef YSTDLIB_CONTAINERS_ARRAY -#define YSTDLIB_CONTAINERS_ARRAY +#ifndef YSTDLIB_CONTAINERS_ARRAY_HPP +#define YSTDLIB_CONTAINERS_ARRAY_HPP #include #include @@ -119,4 +119,4 @@ class Array { }; } // namespace ystdlib::containers -#endif // YSTDLIB_CONTAINERS_ARRAY +#endif // YSTDLIB_CONTAINERS_ARRAY_HPP