diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-05 11:52:07 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:05 +0100 |
commit | aa89a9959b041538d8039f02aa34b65c7355b461 (patch) | |
tree | 8457f2b3e1514cc41c626f461c7af4a4587147f9 /src/buildtool/storage/target_cache.hpp | |
parent | 2977e1b86bcbcda31041414736e5545c23e15a01 (diff) | |
download | justbuild-aa89a9959b041538d8039f02aa34b65c7355b461.tar.gz |
tpp includes: Add hint for IWYU linting
IWYU needs to be explicitly instructed how to handle included .tpp
files in order to not falsely suggest their removal. Conversely,
it also needs to know not to suggest including .tpp files instead
of the corresponding .hpp files.
Diffstat (limited to 'src/buildtool/storage/target_cache.hpp')
-rw-r--r-- | src/buildtool/storage/target_cache.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/storage/target_cache.hpp b/src/buildtool/storage/target_cache.hpp index a45d3999..9dc30d11 100644 --- a/src/buildtool/storage/target_cache.hpp +++ b/src/buildtool/storage/target_cache.hpp @@ -160,6 +160,6 @@ using ActiveTargetCache = TargetCache<true>; #endif // BOOTSTRAP_BUILD_TOOL // NOLINTNEXTLINE(misc-header-include-cycle) -#include "src/buildtool/storage/target_cache.tpp" +#include "src/buildtool/storage/target_cache.tpp" // IWYU pragma: export #endif // INCLUDED_SRC_BUILDTOOL_STORAGE_TARGET_CACHE_HPP |