diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-10 22:05:55 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-12-20 15:35:58 +0100 |
commit | b509ebcdc5858a88af4b23499a964305da484b8d (patch) | |
tree | f1eea858fc7972a971144ea2bfc78a9741e833ae | |
parent | 5b531fa495e711904e3f8f9470b68ca17168f1cc (diff) |
Fix Linux build
-rw-r--r-- | asl/tests/buffer_tests.cpp | 4 | ||||
-rw-r--r-- | asl/tests/float_tests.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/asl/tests/buffer_tests.cpp b/asl/tests/buffer_tests.cpp index 2d23b2f..b1a59ff 100644 --- a/asl/tests/buffer_tests.cpp +++ b/asl/tests/buffer_tests.cpp @@ -1,6 +1,6 @@ -#include <asl/buffer.hpp>
+#include "asl/buffer.hpp"
-#include <asl/testing/testing.hpp>
+#include "asl/testing/testing.hpp"
struct Big
{
diff --git a/asl/tests/float_tests.cpp b/asl/tests/float_tests.cpp index 981279f..faf145b 100644 --- a/asl/tests/float_tests.cpp +++ b/asl/tests/float_tests.cpp @@ -1,6 +1,6 @@ -#include <asl/float.hpp>
+#include "asl/float.hpp"
-#include <asl/testing/testing.hpp>
+#include "asl/testing/testing.hpp"
ASL_TEST(is_infinity)
{
|