bricks: add support for gcc prior to 4.9

* bricks/brick-bitlevel, bricks/brick-hashset,
bricks/brick-shmem, bricks/brick-types: here.
This commit is contained in:
Etienne Renault 2016-12-06 15:35:51 +01:00
parent 6c5c308ea8
commit a308d1a60a
4 changed files with 15 additions and 6 deletions

View file

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