[#absl-MessageJoinStyle] = xref:absl.adoc[absl]::MessageJoinStyle :relfileprefix: ../ :mrdocs: Specifies how to join the error message in the original status and any additional message that has been streamed into the builder. == Synopsis Declared in `<absl/status/status_builder.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- enum class MessageJoinStyle : int; ---- == Members [cols="1,4"] |=== | Name| Description | `kAnnotate` | Join as if by `util::Annotate`, with a convenience separator between the original message and the additional one. | `kAppend` | Append the additional message to the original message with no separator. | `kPrepend` | Prepend the additional message to the original message with no separator. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#