mirror of
https://github.com/bensuperpc/astar.git
synced 2025-01-08 08:34:27 +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
|
* MIT License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#ifndef BEN_ASTAR_HPP
|
||||||
|
#define BEN_ASTAR_HPP
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
@ -363,3 +364,5 @@ class AStarFast final : public AStarVirtual<CoordinateType, enableDebug> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
} // namespace AStar
|
} // namespace AStar
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user