diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-06-10 04:45:50 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-06-10 04:45:50 +0200 |
commit | 01a97804ad06fc38800ec5520c715f4f6af3892c (patch) | |
tree | 5759480cb6fee4fb3834f14b2769c41f79c0bbc4 | |
parent | cb116a189f04943562e7e464088ba421be7f4088 (diff) | |
download | kit-01a97804ad06fc38800ec5520c715f4f6af3892c.zip |
Fix header guard macro name
-rw-r--r-- | source/kit/astar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/kit/astar.h b/source/kit/astar.h index b4a5909..4a8fb06 100644 --- a/source/kit/astar.h +++ b/source/kit/astar.h @@ -10,8 +10,8 @@ // - Sight: when two nodes are in direct sight of each other, skip // nodes between them (Theta*). -#ifndef KIT_ASTAR_INL_H -#define KIT_ASTAR_INL_H +#ifndef KIT_ASTAR_H +#define KIT_ASTAR_H #include "types.h" #include "status.h" |