mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Fix for gcc < 8
This commit is contained in:
parent
405d43866d
commit
8932427d7a
@ -39,14 +39,10 @@ namespace my_rotl = std;
|
||||
#else
|
||||
namespace my_rotl
|
||||
{
|
||||
#ifndef _rotl
|
||||
#if HAS_GENERIC_LAMBDA
|
||||
auto rotl = [](auto x, auto n) { return (((x) << (n)) ^ ((x) >> (32 - (n)))); };
|
||||
#else
|
||||
#define rotl(X, N) (((X) << (N)) ^ ((X) >> (32 - (N))))
|
||||
#endif
|
||||
#else
|
||||
#define rotl _rotl
|
||||
uint32_t rotl = [](uint32_t x, uint32_t n) { return (((x) << (n)) ^ ((x) >> (32 - (n)))); };
|
||||
#endif
|
||||
} // namespace my_rotl
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user