diff options
author | Brad King <brad.king@kitware.com> | 2023-07-27 17:17:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-07-28 13:14:08 (GMT) |
commit | 241ee252ce0fadeacfb1c6349b5838708e3a4e35 (patch) | |
tree | 03890bf9072c90543d03a0c92dd70acf651955f5 /Source/cmUVHandlePtr.cxx | |
parent | 09db788636d3fccf23b6a670b4630b905eb24f2a (diff) | |
download | CMake-241ee252ce0fadeacfb1c6349b5838708e3a4e35.zip CMake-241ee252ce0fadeacfb1c6349b5838708e3a4e35.tar.gz CMake-241ee252ce0fadeacfb1c6349b5838708e3a4e35.tar.bz2 |
IWYU: Update for Debian 12 CI job
`include-what-you-use` diagnostics, in practice, are specific to
the environment's compiler and standard library. Update includes
to satisfy IWYU for our CI job under Debian 12.
Diffstat (limited to 'Source/cmUVHandlePtr.cxx')
-rw-r--r-- | Source/cmUVHandlePtr.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmUVHandlePtr.cxx b/Source/cmUVHandlePtr.cxx index e05b2d52..34e6a70 100644 --- a/Source/cmUVHandlePtr.cxx +++ b/Source/cmUVHandlePtr.cxx @@ -11,6 +11,9 @@ namespace cm { +template <typename T> +struct uv_handle_deleter; + struct uv_loop_deleter { void operator()(uv_loop_t* loop) const; |