aboutsummaryrefslogtreecommitdiff
path: root/src/obj_parser.hpp
diff options
context:
space:
mode:
authorvimene <vincent.menegaux@gmail.com>2026-01-12 22:30:16 +0100
committervimene <vincent.menegaux@gmail.com>2026-01-12 22:30:16 +0100
commitc6e180ed8ba897620327938dc19f6ee792860fd4 (patch)
treeff986a71639ba118d175b33ea1782b7f7f043891 /src/obj_parser.hpp
parentf9c6bd77af826423fba4aeec86b227ccd7102b4e (diff)
downloadengine-c6e180ed8ba897620327938dc19f6ee792860fd4.tar.gz
fixed wrong header guard
Diffstat (limited to 'src/obj_parser.hpp')
-rw-r--r--src/obj_parser.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/obj_parser.hpp b/src/obj_parser.hpp
index f6e8ca1..df3f9fe 100644
--- a/src/obj_parser.hpp
+++ b/src/obj_parser.hpp
@@ -1,5 +1,5 @@
-#ifndef OBJ_PARSER_H
-#define OBJ_PARSER_H
+#ifndef OBJ_PARSER_HPP
+#define OBJ_PARSER_HPP
#include "o3d/mesh.hpp"
@@ -9,4 +9,4 @@ o3d::Mesh parse_object(const std::string& obj_path);
}
-#endif // OBJ_PARSER_H
+#endif // OBJ_PARSER_HPP