diff options
author | Sven Göthel <[email protected]> | 2024-05-26 03:20:06 +0200 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-05-26 03:20:06 +0200 |
commit | 63ee03e4d53da06694b4ded22ba031ffc3eb3561 (patch) | |
tree | c9e7b7a7d580055e0b1e8393bf49d72cb66d776d /test/test_datatype01.hpp | |
parent | ca60eb3ddce28d2a6d895c20fcba011d9b353521 (diff) |
test_type_traits_queries01.cpp: Replace variadic macro w/ template-template-pack (variadic) to please new C++ strictness; test_datatype01.cpp: Remove in-macro macro directive
Diffstat (limited to 'test/test_datatype01.hpp')
-rw-r--r-- | test/test_datatype01.hpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/test_datatype01.hpp b/test/test_datatype01.hpp index 64daf93..4985ecf 100644 --- a/test/test_datatype01.hpp +++ b/test/test_datatype01.hpp @@ -101,11 +101,7 @@ __pack ( struct Addr48Bit { return str; } -#if 0 - constexpr_cxx20 operator std::string() const noexcept { - return toString(); - } -#endif + // constexpr_cxx20 operator std::string() const noexcept { return toString(); } } ); |