cmWindowsRegistry: Add missing <cstdint> 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.
This commit is contained in:
nanoric
2022-06-10 22:13:22 +08:00
committed by Brad King
parent d63ec8645f
commit bc4c0d657a
+1
View File
@@ -2,6 +2,7 @@
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include <cstdint> // IWYU pragma: keep
#include <string>
#include <vector>