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/base/assert.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'asl/base/assert.cpp') diff --git a/asl/base/assert.cpp b/asl/base/assert.cpp index ecda20d..b96836b 100644 --- a/asl/base/assert.cpp +++ b/asl/base/assert.cpp @@ -4,7 +4,12 @@ #include "asl/base/assert.hpp" +#include "asl/base/meta.hpp" + +// NOLINTNEXTLINE(*-non-const-global-variables) static asl::AssertFailureHandler* s_handler = nullptr; + +// NOLINTNEXTLINE(*-non-const-global-variables) static void* s_user = nullptr; void asl::set_assert_failure_handler(AssertFailureHandler handler, void* user) -- cgit