aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2018-12-20 20:32:59 +0000
committerAaron Ballman <aaron@aaronballman.com>2018-12-20 20:32:59 +0000
commite0153b6f8add6a24b5007a92a72e1997ec19062b (patch)
tree605c2a262b6b45d3d69738343af101f6cd907726 /clang/unittests
parent436aa40a13d9d77b09ac93d820cfa9c230b3c9b7 (diff)
Fix build failures from r349812 due to a missing argument.
llvm-svn: 349815
Diffstat (limited to 'clang/unittests')
-rw-r--r--clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp b/clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp
index c18121df17db..0dbf3ae451d2 100644
--- a/clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp
+++ b/clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp
@@ -59,7 +59,8 @@ public:
Compiler.getAnalyzerOpts()->CheckersControlList = {
{"custom.CustomChecker", true}};
AnalysisConsumer->AddCheckerRegistrationFn([](CheckerRegistry &Registry) {
- Registry.addChecker<CustomChecker>("custom.CustomChecker", "Description");
+ Registry.addChecker<CustomChecker>("custom.CustomChecker", "Description",
+ "");
});
return std::move(AnalysisConsumer);
}