Skip to content

Commit

Permalink
fix(storage): no workaround needed with libc++ and MSVC (#9768)
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan authored Sep 2, 2022
1 parent 56416e2 commit 24c8f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/storage/internal/policy_document_request.cc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ bool EscapeAsciiChar(std::string& result, char32_t c) {
StatusOr<std::string> PostPolicyV4EscapeUTF8(std::string const& utf8_bytes) {
std::string result;

#if (_MSC_VER >= 1900)
#if (_MSC_VER >= 1900) && !defined(_LIBCPP_VERSION)
// Working around missing std::codecvt_utf8<char32_t> symbols in MSVC
// Microsoft bug number: VSO#143857
// Context:
Expand Down

0 comments on commit 24c8f67

Please sign in to comment.