Fixed indentation
authorkhizmax <khizmax@gmail.com>
Thu, 10 Nov 2016 08:55:26 +0000 (11:55 +0300)
committerkhizmax <khizmax@gmail.com>
Thu, 10 Nov 2016 08:55:26 +0000 (11:55 +0300)
cds/intrusive/details/feldman_hashset_base.h

index fda03d7dd25fccd2e319ca74f23b9d523aa6be7a..94902af2c7b9e25209dc5f82583faae986eb606c 100644 (file)
@@ -354,10 +354,9 @@ namespace cds { namespace intrusive {
             /// Hash type deduced from \p hash_accessor return type
             typedef typename std::decay<
                 typename std::remove_reference<
-                decltype(hash_accessor()(std::declval<value_type>()))
+                    decltype(hash_accessor()(std::declval<value_type>()))
                 >::type
             >::type hash_type;
-            //typedef typename std::result_of< hash_accessor( std::declval<value_type>()) >::type hash_type;
             static_assert(!std::is_pointer<hash_type>::value, "hash_accessor should return a reference to hash value");
 
             typedef typename cds::opt::details::make_comparator_from<