From 27654a8682ca35ef898dcf105fabfd02e57f643d Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Tue, 7 Oct 2025 16:53:36 -0700 Subject: [PATCH] An API was changed w/o changing the header doc which was causing failures if you run with -Werror -Wdocumentation. Fix the docs to reflect the new headers. --- lldb/include/lldb/Utility/Stream.h | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) 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);