From f0cccbe3285c039553e1fd8b5a5c7830d6087974 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 6 Mar 2025 22:56:56 +0100 Subject: Replace ASL_MOVE, ASL_FWD, and ASL_FWD_LIKE by their std:: equivalent This is because some compiler stuff and diagnostics tools rely on those symboles being what they are. --- asl/testing/testing.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'asl/testing/testing.hpp') diff --git a/asl/testing/testing.hpp b/asl/testing/testing.hpp index 849c4fd..3b4a421 100644 --- a/asl/testing/testing.hpp +++ b/asl/testing/testing.hpp @@ -4,7 +4,7 @@ #pragma once -#include "asl/base/utility.hpp" +#include "asl/base/meta.hpp" namespace asl::testing { @@ -35,7 +35,8 @@ struct Test } // namespace asl::testing #define ASL_TEST(CASE) \ - static void asl_test_fn_##CASE(); \ + static void asl_test_fn_##CASE(); /* NOLINT */ \ + /* NOLINTNEXTLINE */ \ static ::asl::testing::Test asl_test_##CASE( \ #CASE, \ asl_test_fn_##CASE); \ -- cgit