[#absl-StatusBuilder-SetAppend-0d] = xref:absl.adoc[absl]::xref:absl/StatusBuilder.adoc[StatusBuilder]::SetAppend :relfileprefix: ../../ :mrdocs: Mutates the builder so that the final additional message is appended to the original error message in the status. == Synopsis Declared in `<absl/status/status_builder.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[nodiscard]] xref:absl/StatusBuilder.adoc[StatusBuilder]&& SetAppend() &&; ---- == Description A convenience separator is not placed between the messages. NOTE: Multiple calls to `SetPrepend` and `SetAppend` just adjust the behavior of the final join of the original status with the extra message. == Return Value `*this` to allow method chaining. [NOTE] ==== The return value https://en.cppreference.com/cpp/language/attributes/nodiscard[should not be discarded^]. ==== [.small]#Created with https://www.mrdocs.com[MrDocs]#