From c50b3d321e63b18108f80d159f6c442e242425fc Mon Sep 17 00:00:00 2001 From: pi1024e <49824824+pi1024e@users.noreply.github.com> Date: Thu, 2 Apr 2020 13:10:27 -0400 Subject: [PATCH] Replace deprecated C Headers with the C++ variants (#121) --- include/wil/wistd_config.h | 2 +- tests/WinRTTests.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wil/wistd_config.h b/include/wil/wistd_config.h index b408c2481..ea4a9c6af 100644 --- a/include/wil/wistd_config.h +++ b/include/wil/wistd_config.h @@ -39,7 +39,7 @@ #define _WISTD_CONFIG_H_ // DO NOT add *any* additional includes to this file -- there should be no dependencies from its usage -#include // For size_t and other necessary types +#include // For size_t and other necessary types /// @cond #if defined(_MSC_VER) && !defined(__clang__) diff --git a/tests/WinRTTests.cpp b/tests/WinRTTests.cpp index da53ae430..71f7c741d 100644 --- a/tests/WinRTTests.cpp +++ b/tests/WinRTTests.cpp @@ -1,5 +1,5 @@ -#include // TODO: https://github.com/microsoft/wil/issues/44 +#include // TODO: https://github.com/microsoft/wil/issues/44 #include #ifdef WIL_ENABLE_EXCEPTIONS