Merge bitcoin/bitcoin#35900: iwyu: Fix warnings in src/interfaces and treat them as errors

b3ff9c4d68 iwyu: Fix warnings in `src/interfaces` and treat them as errors (Hennadii Stepanov)
d564b0255f iwyu: Add temporary mapping to work around upstream bug (Hennadii Stepanov)

Pull request description:

  This PR continues the ongoing effort to enforce IWYU warnings.

  See [Developer Notes](https://github.com/bitcoin/bitcoin/blob/master/doc/developer-notes.md#using-iwyu).

ACKs for top commit:
  maflcko:
    review ACK b3ff9c4d68 🖋

Tree-SHA512: 9359854c7b6e6ec93022947e78ef57fc68728326df874371028997a550fd1b6ef08e4b09271163b9d5c921c9e01deadf92b0eb5ae3f620d797e4f9bdea8f4727
This commit is contained in:
merge-script
2026-08-27 14:55:53 +01:00
7 changed files with 22 additions and 27 deletions

View File

@@ -5,4 +5,8 @@
{ "include": [ "<mmintrin.h>", "private", "<immintrin.h>", "public" ] },
{ "include": [ "<smmintrin.h>", "private", "<immintrin.h>", "public" ] },
{ "include": [ "<tmmintrin.h>", "private", "<immintrin.h>", "public" ] },
# Workaround for IWYU issue.
# See: https://github.com/include-what-you-use/include-what-you-use/issues/2084.
{ "symbol": ["std::tuple", "private", "<tuple>", "public"] },
]