Skip to content

Commit

Permalink
Change header guard pragma once to more standard ifndef
Browse files Browse the repository at this point in the history
Signed-off-by: Bensuperpc <[email protected]>
  • Loading branch information
bensuperpc committed Jun 21, 2024
1 parent 3520477 commit 82f9877
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/astar/astar.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
* MIT License
*/

#pragma once
#ifndef BEN_ASTAR_HPP
#define BEN_ASTAR_HPP

#include <algorithm>
#include <cmath>
Expand Down Expand Up @@ -363,3 +364,5 @@ class AStarFast final : public AStarVirtual<CoordinateType, enableDebug> {
};

} // namespace AStar

#endif

0 comments on commit 82f9877

Please sign in to comment.