diff options
Diffstat (limited to 'contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp')
| -rw-r--r-- | contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp b/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp index 3bf8a1836b19..8f3bf138cae4 100644 --- a/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp +++ b/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp @@ -208,7 +208,7 @@ void ArrayBoundCheckerV2::checkLocation(SVal location, bool isLoad,        SVal ByteOffset = rawOffset.getByteOffset();        if (isTainted(state, ByteOffset)) {          reportOOB(checkerContext, state_exceedsUpperBound, OOB_Tainted, -                  llvm::make_unique<TaintBugVisitor>(ByteOffset)); +                  std::make_unique<TaintBugVisitor>(ByteOffset));          return;        }      } else if (state_exceedsUpperBound) { @@ -256,7 +256,7 @@ void ArrayBoundCheckerV2::reportOOB(      break;    } -  auto BR = llvm::make_unique<BugReport>(*BT, os.str(), errorNode); +  auto BR = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), errorNode);    BR->addVisitor(std::move(Visitor));    checkerContext.emitReport(std::move(BR));  }  | 
