diff options
author | Abseil Team <absl-team@google.com> | 2019-07-09T14·37-0700 |
---|---|---|
committer | Matt Calabrese <calabrese@google.com> | 2019-07-10T14·42+0000 |
commit | 44efe96dfca674a17b45ca53fc77fb69f1e29bf4 (patch) | |
tree | 535a4285b21f34061af5e73eadc4c675c86592e3 /absl/strings | |
parent | 3c98fcc0461bd2a4b9c149d4748a7373a225cf4b (diff) |
Export of internal Abseil changes.
-- 9c4ef32276054fba6a116c01cd4b3fd278f59ece by Andy Soffer <asoffer@google.com>: Remove support for unused arbitrary-width output in FastUniformBits. Width should be inferred from the requested return UIntType. PiperOrigin-RevId: 257189319 -- e3326329d02171a301cc3d6ae617ed448472b728 by Abseil Team <absl-team@google.com>: Update comments to make clear that absl::Format(std::string *, ...) appends to the provided string. PiperOrigin-RevId: 257058043 -- e2096b06d714fba3ea2c885d670a42efd872765c by Xiaoyi Zhang <zhangxy@google.com>: Fix compilation error on MSVC 2017. The root cause seems to be a compiler bug in VS 2017 about pack expansion with multiple parameter packs, specifically `MakeVisitationMatrixImpl::Run` is triggering compiler error "error C3528: 'BoundIndices': the number of elements in this pack expansion does not match the number of elements in 'EndIndices'". Work around this issue by using only one parameter pack `CurrIndices` in `MakeVisitationMatrixImpl::Run`. PiperOrigin-RevId: 257040381 -- 9ab75ff27b2513583fffc1233e6568aa96be36f7 by Matt Calabrese <calabrese@google.com>: Internal change. PiperOrigin-RevId: 257039041 GitOrigin-RevId: 9c4ef32276054fba6a116c01cd4b3fd278f59ece Change-Id: I5f708bb03aff93948502394a413260af2a8a273b
Diffstat (limited to 'absl/strings')
-rw-r--r-- | absl/strings/str_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/strings/str_format.h b/absl/strings/str_format.h index 0b93c28856e7..607e2bcaae16 100644 --- a/absl/strings/str_format.h +++ b/absl/strings/str_format.h @@ -449,7 +449,7 @@ class FormatRawSink { // additional arguments. // // By default, `std::string` and `std::ostream` are supported as destination -// objects. +// objects. If a `std::string` is used the formatted string is appended to it. // // `absl::Format()` is a generic version of `absl::StrFormat(), for custom // sinks. The format string, like format strings for `StrFormat()`, is checked |