mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-07 06:04:59 +00:00
Merge pull request #595 from orbitcowboy/master
[style] Added parentheses around macro arguments
This commit is contained in:
commit
38b14bb2da
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@
|
|||
* if this code is included and compiled as C++; related GCC warning is:
|
||||
* warning: use of C++11 long long integer constant [-Wlong-long]
|
||||
*/
|
||||
#define _SIP_ULL(high, low) (((uint64_t)high << 32) | low)
|
||||
#define _SIP_ULL(high, low) ((((uint64_t)high) << 32) | (low))
|
||||
|
||||
#define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue