1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-04-03 17:27:03 +00:00

Replace a macro by a lambda

This commit is contained in:
Carles Fernandez 2020-06-11 13:32:18 +02:00
parent d847d3fdcf
commit 44eba473a4
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -34,7 +34,7 @@
#ifndef _rotl
#define _rotl(X, N) (((X) << (N)) ^ ((X) >> (32 - (N)))) // Used in the parity check algorithm
auto _rotl = [](auto x, auto n) { return (((x) << (n)) ^ ((x) >> (32 - (n)))); }; // Used in the parity check algorithm
#endif