diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-10-02 10:46:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-10-02 10:47:51 +0200 |
commit | 3771a4b9ba6b1c767497d814c5b3f61472ba182b (patch) | |
tree | 7551ae727cfa7e98f231a4abb4f5bd8c9e6dbd0b | |
parent | 3c173ebca419f4aad9c56631a957178b6df0eeee (diff) |
Fix build after ##21492
-rw-r--r-- | main/tests/test_astar.cpp | 9 | ||||
-rw-r--r-- | main/tests/test_astar.h | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/main/tests/test_astar.cpp b/main/tests/test_astar.cpp index 0f034c78f7..8b48f075bc 100644 --- a/main/tests/test_astar.cpp +++ b/main/tests/test_astar.cpp @@ -28,12 +28,13 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#include "a_star.h" -#include "os/os.h" -#include <stdio.h> - #include "test_astar.h" +#include "core/math/a_star.h" +#include "core/os/os.h" + +#include <stdio.h> + namespace TestAStar { class ABCX : public AStar { diff --git a/main/tests/test_astar.h b/main/tests/test_astar.h index 6029742017..6458f9efb1 100644 --- a/main/tests/test_astar.h +++ b/main/tests/test_astar.h @@ -31,7 +31,7 @@ #ifndef TEST_ASTAR_H #define TEST_ASTAR_H -#include "os/main_loop.h" +#include "core/os/main_loop.h" namespace TestAStar { |