summaryrefslogtreecommitdiff
path: root/src/common/Utilities/advstd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Utilities/advstd.h')
-rw-r--r--src/common/Utilities/advstd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/advstd.h b/src/common/Utilities/advstd.h
index 3b33dbaec6..09485ff4b7 100644
--- a/src/common/Utilities/advstd.h
+++ b/src/common/Utilities/advstd.h
@@ -25,7 +25,7 @@
namespace advstd
{
// This workaround for std::remove_cvref_t, std::type_identify is needed for GCC 8...
- // TODO: remove when we drop GCC 8 support. https://en.cppreference.com/w/cpp/compiler_support/20
+ /// @todo: remove when we drop GCC 8 support. https://en.cppreference.com/w/cpp/compiler_support/20
// C++20 advstd::remove_cvref_t
template <class T>
using remove_cvref_t = std::remove_cv_t<std::remove_reference_t<T>>;