From ad96ea632e0537683ad0658c0ae33c059aa3583f Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 10 Oct 2022 09:34:10 +0200 Subject: [PATCH] stylistic --- include/boost/unordered/hash_traits.hpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/include/boost/unordered/hash_traits.hpp b/include/boost/unordered/hash_traits.hpp index 5f501566..5ab4a556 100644 --- a/include/boost/unordered/hash_traits.hpp +++ b/include/boost/unordered/hash_traits.hpp @@ -20,16 +20,11 @@ namespace unordered{ namespace detail{ template -struct hash_is_avalanching_impl -{ - using type=std::false_type; -}; +struct hash_is_avalanching_impl:std::false_type{}; template -struct hash_is_avalanching_impl> -{ - using type=std::true_type; -}; +struct hash_is_avalanching_impl>: + std::true_type{}; } /* namespace detail */