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 1721117 commit 72833caCopy full SHA for 72833ca
Firestore/core/src/util/string_format.h
@@ -66,6 +66,11 @@ class FormatArg final : public absl::AlphaNum {
66
public:
67
template <typename T>
68
FormatArg(T&& value,
69
+ // TODO(b/388888512) Remove the usage of StringifySink since it is not part
70
+ // of absl's public API. Moreover, subclassing AlphaNum is not supported
71
+ // either, so find a way to do this without these two caveats.
72
+ // See https://github.com/firebase/firebase-ios-sdk/pull/14331 for a
73
+ // partial proposal.
74
absl::strings_internal::StringifySink&& sink =
75
{}) // NOLINT(runtime/explicit)
76
: FormatArg{std::forward<T>(value), std::move(sink),
0 commit comments