From 41ba8c8a14a83cc9a7eda5583bf042d0cb873a28 Mon Sep 17 00:00:00 2001 From: hai007 Date: Tue, 25 Oct 2022 09:28:32 -0700 Subject: [PATCH] Convert `#include ` to `#include ` in nearby files. `` is the MSVC internal implementation file for string. This makes it contingent on the MSVC STL. `` provides the same declarations, but does not expose the MSVC-specific implementation details. This implementation is guaranteed to meet the C++ standard exactly. This change updates includes of `` to be includes of ``. PiperOrigin-RevId: 483696244 --- internal/platform/implementation/windows/platform_test.cc | 2 +- internal/platform/implementation/windows/test_utils.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/platform/implementation/windows/platform_test.cc b/internal/platform/implementation/windows/platform_test.cc index 19de57c4..75b29910 100644 --- a/internal/platform/implementation/windows/platform_test.cc +++ b/internal/platform/implementation/windows/platform_test.cc @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include "gtest/gtest.h" diff --git a/internal/platform/implementation/windows/test_utils.h b/internal/platform/implementation/windows/test_utils.h index 155eaa41..577ab98c 100644 --- a/internal/platform/implementation/windows/test_utils.h +++ b/internal/platform/implementation/windows/test_utils.h @@ -15,7 +15,7 @@ #ifndef PLATFORM_IMPL_WINDOWS_TEST_UTILS_H_ #define PLATFORM_IMPL_WINDOWS_TEST_UTILS_H_ -#include +#include #include "internal/platform/payload_id.h"