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
6 changes: 3 additions & 3 deletions llvm/tools/llvm-remarkutil/RemarkFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ using namespace llvm;
using namespace remarks;
using namespace llvm::remarkutil;

namespace filter {
// Note: Avoid using the identifier "filter" in this file, as it is prone to
// namespace collision with headers that might get included e.g.
// curses.h.

static cl::SubCommand FilterSub("filter",
"Filter remarks based on specified criteria.");
Expand Down Expand Up @@ -80,5 +82,3 @@ static Error tryFilter() {
}

static CommandRegistration FilterReg(&FilterSub, tryFilter);

} // namespace filter