From bc4c0d657a15b4500410a350f8c7c8e49fad366f Mon Sep 17 00:00:00 2001 From: nanoric Date: Fri, 10 Jun 2022 22:13:22 +0800 Subject: cmWindowsRegistry: Add missing include It is needed for `std::uint8_t`, but was left out of commit 8d7e80cf3d (find_* commands: add control over Windows registry views, 2022-04-16). For some reason the include-what-you-use tool does not think the include is needed, so add an `IWYU pragma` to keep it. --- Source/cmWindowsRegistry.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmWindowsRegistry.h b/Source/cmWindowsRegistry.h index bb9090e..2eed297 100644 --- a/Source/cmWindowsRegistry.h +++ b/Source/cmWindowsRegistry.h @@ -2,6 +2,7 @@ file Copyright.txt or https://cmake.org/licensing for details. */ #pragma once +#include // IWYU pragma: keep #include #include -- cgit v0.12