diff --git a/lldb/include/lldb/Utility/Stream.h b/lldb/include/lldb/Utility/Stream.h index fc547ed739239..82774d56922a9 100644 --- a/lldb/include/lldb/Utility/Stream.h +++ b/lldb/include/lldb/Utility/Stream.h @@ -260,16 +260,8 @@ class Stream { /// \param[in] text /// The string to be output to the stream. /// - /// \param[in] pattern - /// The regex pattern to match against the \a text string. Portions of \a - /// text matching this pattern will be colorized. If this parameter is - /// nullptr, highlighting is not performed. - /// \param[in] prefix - /// The ANSI color code to start colorization. This is - /// environment-dependent. - /// \param[in] suffix - /// The ANSI color code to end colorization. This is - /// environment-dependent. + /// \param[in] settings + /// Optional print hilight settings. void PutCStringColorHighlighted( llvm::StringRef text, std::optional settings = std::nullopt);