浏览代码

Fix build after ##21492

Rémi Verschelde 7 年之前
父节点
当前提交
3771a4b9ba
共有 2 个文件被更改,包括 6 次插入5 次删除
  1. 5 4
      main/tests/test_astar.cpp
  2. 1 1
      main/tests/test_astar.h

+ 5 - 4
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 {

+ 1 - 1
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 {