From d23ca4214ce2edaa3401e7d63f56c2e7bf4f2413 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Thu, 3 Feb 2022 16:39:11 +0100 Subject: [PATCH] [BL] Fix documentation generation for function With the extra line between the comment and function definition doxygen attributes the documentation to other entity. --- BaseLib/cpp23.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BaseLib/cpp23.h b/BaseLib/cpp23.h index 23d21ae8a92..7a740f6b806 100644 --- a/BaseLib/cpp23.h +++ b/BaseLib/cpp23.h @@ -25,10 +25,9 @@ namespace BaseLib * Implementation from Scott Meyers : Modern effective c++ , Item 10 Scoped * enums */ - template <typename E> constexpr auto to_underlying(E e) noexcept { return static_cast<std::underlying_type_t<E>>(e); } -} // namespace BaseLib \ No newline at end of file +} // namespace BaseLib -- GitLab