diff options
author | George Karpenkov <ekarpenkov@apple.com> | 2018-09-28 18:49:41 +0000 |
---|---|---|
committer | George Karpenkov <ekarpenkov@apple.com> | 2018-09-28 18:49:41 +0000 |
commit | c82d457db53256a5721980d03e7ab19a00c92a9c (patch) | |
tree | 568be2a560adcadc1b75385391dc43f1b54bc823 /clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp | |
parent | c704f4fbd0a41090e68aaf056b31803481f535ff (diff) | |
download | bcm5719-llvm-c82d457db53256a5721980d03e7ab19a00c92a9c.tar.gz bcm5719-llvm-c82d457db53256a5721980d03e7ab19a00c92a9c.zip |
[analyzer] [NFC] Remove unused parameters, as found by -Wunused-parameter
Differential Revision: https://reviews.llvm.org/D52640
llvm-svn: 343353
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp b/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp index a6f4f93f4df..691176dfc1f 100644 --- a/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp +++ b/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp @@ -970,7 +970,7 @@ void PathDiagnosticLocation::flatten() { //===----------------------------------------------------------------------===// std::shared_ptr<PathDiagnosticCallPiece> -PathDiagnosticCallPiece::construct(const ExplodedNode *N, const CallExitEnd &CE, +PathDiagnosticCallPiece::construct(const CallExitEnd &CE, const SourceManager &SM) { const Decl *caller = CE.getLocationContext()->getDecl(); PathDiagnosticLocation pos = getLocationForCaller(CE.getCalleeContext(), |