1
0
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:
Bensuperpc 2024-06-21 21:32:41 +02:00
parent 3520477222
commit 82f9877897
No known key found for this signature in database
GPG Key ID: EED195F75454E328

View File

@ -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