Skip to content

Commit d70e210

Browse files
authored
fix(containers): Correct header guards in ystdlib/containers/Array.hpp. (#41)
1 parent 5f43a3b commit d70e210

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ystdlib/containers/Array.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef YSTDLIB_CONTAINERS_ARRAY
2-
#define YSTDLIB_CONTAINERS_ARRAY
1+
#ifndef YSTDLIB_CONTAINERS_ARRAY_HPP
2+
#define YSTDLIB_CONTAINERS_ARRAY_HPP
33

44
#include <algorithm>
55
#include <concepts>
@@ -119,4 +119,4 @@ class Array {
119119
};
120120
} // namespace ystdlib::containers
121121

122-
#endif // YSTDLIB_CONTAINERS_ARRAY
122+
#endif // YSTDLIB_CONTAINERS_ARRAY_HPP

0 commit comments

Comments
 (0)