diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-07 00:00:43 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-03-07 00:00:43 +0100 |
commit | 636882316b5191931e144212d93665c10859ac95 (patch) | |
tree | 740f76daceee5bff223b790a4eb91f4e59c5be61 /asl/base/meta.hpp | |
parent | f0cccbe3285c039553e1fd8b5a5c7830d6087974 (diff) |
Some work on clang-tidy-ing things up
Diffstat (limited to 'asl/base/meta.hpp')
-rw-r--r-- | asl/base/meta.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asl/base/meta.hpp b/asl/base/meta.hpp index b798eeb..06c7c59 100644 --- a/asl/base/meta.hpp +++ b/asl/base/meta.hpp @@ -153,7 +153,7 @@ template<typename T> struct _tame_helper { using type = T; }; #define TAME_HELPER_IMPL(TRAILING) \ template<typename R, typename... Args> \ - struct _tame_helper<R(Args...) TRAILING> { using type = R(Args...); } + struct _tame_helper<R(Args...) TRAILING> { using type = R(Args...); } // NOLINT(*-parentheses) TAME_HELPER_IMPL(); TAME_HELPER_IMPL(&); |