From 82f9877897eb62ce3c13e7d60763df74389ac076 Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Fri, 21 Jun 2024 21:32:41 +0200 Subject: [PATCH] Change header guard pragma once to more standard ifndef Signed-off-by: Bensuperpc --- include/astar/astar.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/astar/astar.hpp b/include/astar/astar.hpp index 39d2e13..b4ba127 100644 --- a/include/astar/astar.hpp +++ b/include/astar/astar.hpp @@ -3,7 +3,8 @@ * MIT License */ -#pragma once +#ifndef BEN_ASTAR_HPP +#define BEN_ASTAR_HPP #include #include @@ -363,3 +364,5 @@ class AStarFast final : public AStarVirtual { }; } // namespace AStar + +#endif