Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: tools/clang/plugins/FindBadConstructsAction.cpp

Issue 2732973004: clang/plugin: Make auto raw check default in FindBadConstructs plugin. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/clang/plugins/FindBadConstructsConsumer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/plugins/FindBadConstructsAction.cpp
diff --git a/tools/clang/plugins/FindBadConstructsAction.cpp b/tools/clang/plugins/FindBadConstructsAction.cpp
index 25382ec06928db86471708235137a0e6845bb4b9..56050b479e8f1d9c0b4c51d584e60351dd39cc97 100644
--- a/tools/clang/plugins/FindBadConstructsAction.cpp
+++ b/tools/clang/plugins/FindBadConstructsAction.cpp
@@ -58,7 +58,8 @@ bool FindBadConstructsAction::ParseArgs(const CompilerInstance& instance,
} else if (args[i] == "check-ipc") {
options_.check_ipc = true;
} else if (args[i] == "check-auto-raw-pointer") {
- options_.check_auto_raw_pointer = true;
+ // This flag is deprecated and will be removed once Chromium builds aren't
+ // using it. http://crbug.com/554600.
} else {
parsed = false;
llvm::errs() << "Unknown clang plugin argument: " << args[i] << "\n";
« no previous file with comments | « no previous file | tools/clang/plugins/FindBadConstructsConsumer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698