diff options
Diffstat (limited to 'compiler-rt/lib/fuzzer/FuzzerCorpus.h')
-rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerCorpus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerCorpus.h b/compiler-rt/lib/fuzzer/FuzzerCorpus.h index 7dd6dd6a94e..2da929835f4 100644 --- a/compiler-rt/lib/fuzzer/FuzzerCorpus.h +++ b/compiler-rt/lib/fuzzer/FuzzerCorpus.h @@ -83,7 +83,7 @@ class InputCorpus { II.NumFeatures = NumFeatures; II.MayDeleteFile = MayDeleteFile; II.UniqFeatureSet = FeatureSet; - llvm::sort(II.UniqFeatureSet.begin(), II.UniqFeatureSet.end()); + std::sort(II.UniqFeatureSet.begin(), II.UniqFeatureSet.end()); ComputeSHA1(U.data(), U.size(), II.Sha1); Hashes.insert(Sha1ToString(II.Sha1)); UpdateCorpusDistribution(); |