mirror of
https://github.com/bensuperpc/astar.git
synced 2025-01-07 08:14:26 +01:00
Change header guard pragma once to more standard ifndef
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
parent
3520477222
commit
82f9877897
@ -3,7 +3,8 @@
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#ifndef BEN_ASTAR_HPP
|
||||
#define BEN_ASTAR_HPP
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
@ -363,3 +364,5 @@ class AStarFast final : public AStarVirtual<CoordinateType, enableDebug> {
|
||||
};
|
||||
|
||||
} // namespace AStar
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user