refactor: add most of src/util to iwyu

These files change infrequently, and not much header shuffling is required.

We don't add everything in src/util/ yet, because IWYU makes some
dubious suggestions, which I'm going to follow up with upstream.
This commit is contained in:
fanquake 2022-06-09 16:26:55 +01:00
parent a7f3479ba3
commit 07f2c25d04
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1
25 changed files with 83 additions and 30 deletions

View file

@ -6,6 +6,8 @@
#include <random.h>
#include <util/bytevectorhash.h>
#include <vector>
ByteVectorHash::ByteVectorHash() :
m_k0(GetRand<uint64_t>()),
m_k1(GetRand<uint64_t>())