From b5ecd73b1868aff2addb69aedca5ed86299ffa21 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Wed, 23 Feb 2022 19:47:06 +0100 Subject: [PATCH] Formatting --- const_fmt/stdlib.h | 50 +++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/const_fmt/stdlib.h b/const_fmt/stdlib.h index 79ba8a7..c5b4e1c 100644 --- a/const_fmt/stdlib.h +++ b/const_fmt/stdlib.h @@ -4,9 +4,9 @@ /* * - * Disclaimer: Very bad (partially at least) implementation of some features of the C++ - * Standard Library. Not meant as a full-on stdlib implementation, only for - * usage in this project (Underlined by the fact, that in this case the + * Disclaimer: Very bad (partially at least) implementation of some features of + * the C++ Standard Library. Not meant as a full-on stdlib implementation, only + * for usage in this project (Underlined by the fact, that in this case the * namespace std is actually const_fmt::std) * */ @@ -38,21 +38,21 @@ using size_t = uint16_t; // clang-format off - template - struct remove_reference { - using type = T; - }; - template - struct remove_reference { - using type = T; - }; - template - struct remove_reference { - using type = T; - }; +template +struct remove_reference { + using type = T; +}; +template +struct remove_reference { + using type = T; +}; +template +struct remove_reference { + using type = T; +}; - template - using remove_reference_t = typename std::remove_reference::type; +template +using remove_reference_t = typename std::remove_reference::type; // clang-format on @@ -82,17 +82,17 @@ template <> struct make_unsigned { using type = unsigned long */ -//template -//concept integral = is_integral_v<_Tp>; +// template +// concept integral = is_integral_v<_Tp>; // -//template -//concept signed_integral = integral<_Tp> && is_signed_v<_Tp>; +// template +// concept signed_integral = integral<_Tp> && is_signed_v<_Tp>; // -//template -//concept unsigned_integral = integral<_Tp> && !signed_integral<_Tp>; +// template +// concept unsigned_integral = integral<_Tp> && !signed_integral<_Tp>; // -//template -//concept floating_point = is_floating_point_v<_Tp>; +// template +// concept floating_point = is_floating_point_v<_Tp>; /*