diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-10-28 18:39:01 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | 4a3185b782dabeb664fcf2fa4f6d17e36cf23d0e (patch) | |
tree | 2cc982f8972b7b809819032b41e618e8506abbd6 /asl/testing | |
parent | e1f9d9ca1ef3c69da3b887b0af298be0aea4a5f9 (diff) |
Start fixing some cross platform issues
Diffstat (limited to 'asl/testing')
-rw-r--r-- | asl/testing/testing.cpp | 2 | ||||
-rw-r--r-- | asl/testing/testing.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/asl/testing/testing.cpp b/asl/testing/testing.cpp index e07cde8..f0c4fb5 100644 --- a/asl/testing/testing.cpp +++ b/asl/testing/testing.cpp @@ -1,6 +1,6 @@ #include "asl/testing/testing.hpp"
-#include <asl/print.hpp>
+#include "asl/print.hpp"
static asl::testing::Test* g_head = nullptr;
static asl::testing::Test* g_tail = nullptr;
diff --git a/asl/testing/testing.hpp b/asl/testing/testing.hpp index db2a64a..4fe44df 100644 --- a/asl/testing/testing.hpp +++ b/asl/testing/testing.hpp @@ -1,6 +1,6 @@ #pragma once
-#include <asl/utility.hpp>
+#include "asl/utility.hpp"
namespace asl::testing
{
|