[libFuzzer] Use Vector rather than std::vector.

llvm-svn: 335487
GitOrigin-RevId: 988f2da613ee0cba2db489eb0cc6c8b537901973
diff --git a/FuzzerTracePC.cpp b/FuzzerTracePC.cpp
index 1113b0e..540d888 100644
--- a/FuzzerTracePC.cpp
+++ b/FuzzerTracePC.cpp
@@ -279,7 +279,7 @@
     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);