summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatt Morehouse <mascasa@google.com>2018-06-25 15:59:24 +0000
committerMatt Morehouse <mascasa@google.com>2018-06-25 15:59:24 +0000
commitc0e4b39df7c984f5a3ae04c6925a7914e245759b (patch)
tree5f110346a6c592c0f4701d5ca3d8a1f8b646e3ce /lib
parent360b21e24e3c504439d8958b0bc0cb3e12fe9a4c (diff)
[libFuzzer] Use Vector rather than std::vector.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@335487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/fuzzer/FuzzerTracePC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuzzer/FuzzerTracePC.cpp b/lib/fuzzer/FuzzerTracePC.cpp
index 1113b0e0b..540d88882 100644
--- a/lib/fuzzer/FuzzerTracePC.cpp
+++ b/lib/fuzzer/FuzzerTracePC.cpp
@@ -279,7 +279,7 @@ void TracePC::PrintCoverage() {
std::string FunctionStr = DescribePC("%F", VisualizePC);
std::string LineStr = DescribePC("%l", VisualizePC);
size_t Line = std::stoul(LineStr);
- std::vector<uintptr_t> UncoveredPCs;
+ Vector<uintptr_t> UncoveredPCs;
for (auto TE = First; TE < Last; TE++)
if (!ObservedPCs.count(TE->PC))
UncoveredPCs.push_back(TE->PC);