Convert #include <xstring> to #include <string> in nearby files.

`<xstring>` is the MSVC internal implementation file for string. This makes it contingent on the MSVC STL.

`<string>` 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 `<xstring>` to be includes of `<string>`.

PiperOrigin-RevId: 483696244
This commit is contained in:
hai007
2022-10-25 09:30:40 -07:00
committed by Copybara-Service
parent 32e6fc3c42
commit 41ba8c8a14
2 changed files with 2 additions and 2 deletions
@@ -18,7 +18,7 @@
#include <knownfolders.h>
#include <shlobj.h>
#include <xstring>
#include <string>
#include <fstream>
#include "gtest/gtest.h"
@@ -15,7 +15,7 @@
#ifndef PLATFORM_IMPL_WINDOWS_TEST_UTILS_H_
#define PLATFORM_IMPL_WINDOWS_TEST_UTILS_H_
#include <xstring>
#include <string>
#include "internal/platform/payload_id.h"