Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions lldb/include/lldb/Utility/Stream.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<HighlightSettings> settings = std::nullopt);
Expand Down
Loading