On 07/07/20 23:38 +0100, Jonathan Wakely wrote:
Also remove leading spaces that are followed by tabs.libstdc++-v3/ChangeLog: * include/std/limits: Whitespace changes.
I missed a couple of leading spaces, fixed with this one. Committed to trunk.
commit 161aa50ee2d1142802d7200733fee1cf532d6696 Author: Jonathan Wakely <[email protected]> Date: Tue Jul 7 23:39:44 2020 +0100 libstdc++: Whitespace changes to remove spaces before tabs libstdc++-v3/ChangeLog: * include/std/limits: Whitespace changes. diff --git a/libstdc++-v3/include/std/limits b/libstdc++-v3/include/std/limits index bee9b9f6bb6..f5e403be727 100644 --- a/libstdc++-v3/include/std/limits +++ b/libstdc++-v3/include/std/limits @@ -1536,11 +1536,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION static _GLIBCXX_CONSTEXPR TYPE \ denorm_min() _GLIBCXX_USE_NOEXCEPT \ { return static_cast<TYPE>(0); } \ - \ + \ static _GLIBCXX_USE_CONSTEXPR bool is_iec559 = false; \ static _GLIBCXX_USE_CONSTEXPR bool is_bounded = true; \ static _GLIBCXX_USE_CONSTEXPR bool is_modulo = false; \ - \ + \ static _GLIBCXX_USE_CONSTEXPR bool traps \ = __glibcxx_integral_traps; \ static _GLIBCXX_USE_CONSTEXPR bool tinyness_before = false; \
