refactor: Fix includes in crypto directory

IWYU issue #1763 appears to be a corner case, so it has been addressed
using a local pragma rather than a global mapping.
This commit is contained in:
Hennadii Stepanov
2025-07-17 15:57:50 +01:00
parent 56f2a689a2
commit bdb8eadcdc
24 changed files with 48 additions and 32 deletions

View File

@@ -4,7 +4,11 @@
#include <crypto/siphash.h>
#include <uint256.h>
#include <bit>
#include <cassert>
#include <span>
#define SIPROUND do { \
v0 += v1; v1 = std::rotl(v1, 13); v1 ^= v0; \