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 0978222 commit a58216aCopy full SHA for a58216a
Firestore/core/src/util/string_format.cc
@@ -26,7 +26,11 @@ static const char* kInvalid = "<invalid>";
26
27
// Disable asan for this function because of the way it manages stack
28
// (nested closure) is flaged with stack underflow by clang on Ubuntu.
29
+#if defined(_MSC_VER)
30
+__declspec(no_sanitize_address) std::string StringFormatPieces(
31
+#else
32
__attribute__((no_sanitize_address)) std::string StringFormatPieces(
33
+#endif
34
const char* format, std::initializer_list<absl::string_view> pieces) {
35
std::string result;
36
0 commit comments