Skip to content

Commit 864e975

Browse files
committed
removed trailing white spaces
1 parent 59f7c80 commit 864e975

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/boost/hana/hash.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ BOOST_HANA_NAMESPACE_BEGIN
7979
return hana::type_c<hana::integral_constant<unsigned long long, x>>;
8080
}
8181
};
82-
82+
8383
template <typename T>
8484
struct hash_integral_helper<T,
8585
typename std::enable_if<std::is_enum<T>::value>::type

test/integral_constant/hash.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@ int main() {
118118
hana::hash(hana::integral_c<enum_1, zero>),
119119
hana::type_c<hana::integral_constant<enum_1, zero>>
120120
));
121-
121+
122122
BOOST_HANA_CONSTANT_ASSERT(hana::equal(
123123
hana::hash(hana::integral_c<enum_2, enum_2::zero>),
124124
hana::type_c<hana::integral_constant<enum_2, enum_2::zero>>
125125
));
126-
126+
127127
BOOST_HANA_CONSTANT_ASSERT(hana::equal(
128128
hana::hash(hana::integral_c<enum_3, enum_3::zero>),
129129
hana::type_c<hana::integral_constant<enum_3, enum_3::zero>>

0 commit comments

Comments
 (0)