We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212ecbf commit c50b3d3Copy full SHA for c50b3d3
include/wil/wistd_config.h
@@ -39,7 +39,7 @@
39
#define _WISTD_CONFIG_H_
40
41
// DO NOT add *any* additional includes to this file -- there should be no dependencies from its usage
42
-#include <stddef.h> // For size_t and other necessary types
+#include <cstddef> // For size_t and other necessary types
43
44
/// @cond
45
#if defined(_MSC_VER) && !defined(__clang__)
tests/WinRTTests.cpp
@@ -1,5 +1,5 @@
1
2
-#include <time.h> // TODO: https://github.com/microsoft/wil/issues/44
+#include <ctime> // TODO: https://github.com/microsoft/wil/issues/44
3
#include <wil/winrt.h>
4
5
#ifdef WIL_ENABLE_EXCEPTIONS
0 commit comments