bricks: please gcc-4.8 for auto specifier

* bricks/brick-hashset: here.
This commit is contained in:
Etienne Renault 2017-03-17 10:46:39 +01:00
parent 941608060e
commit ad005121ae

View file

@ -43,8 +43,7 @@ using hash::hash128_t;
struct DefaultHasher
{
// auto hash( int64_t v ) const -> std::pair<int64_t, int64_t>
auto hash( int64_t v ) const
auto hash( int64_t v ) const -> std::pair<int64_t, int64_t>
{
return std::make_pair( v, ~v );
}