summaryrefslogtreecommitdiff
path: root/lib/fuzzer
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2019-06-14 22:34:30 +0000
committerKostya Serebryany <kcc@google.com>2019-06-14 22:34:30 +0000
commite5b01268529e18fb3b4fe333c8fd5a05badb0901 (patch)
tree61bcfd1a8e85e915dd44e346358d950ccab64eed /lib/fuzzer
parentf1ea5ef7dbd70945b256f7fab9e52bd24d0d2edc (diff)
downloadcompiler-rt-e5b01268529e18fb3b4fe333c8fd5a05badb0901.tar.gz
[libFuzzer] fix -Werror build
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@363469 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/fuzzer')
-rw-r--r--lib/fuzzer/FuzzerDataFlowTrace.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuzzer/FuzzerDataFlowTrace.cpp b/lib/fuzzer/FuzzerDataFlowTrace.cpp
index bd249c4b6..c7200a3c2 100644
--- a/lib/fuzzer/FuzzerDataFlowTrace.cpp
+++ b/lib/fuzzer/FuzzerDataFlowTrace.cpp
@@ -123,7 +123,7 @@ static Vector<uint8_t> DFTStringToVector(const std::string &DFTString) {
static bool ParseError(const char *Err, const std::string &Line) {
Printf("DataFlowTrace: parse error: %s: Line: %s\n", Err, Line.c_str());
return false;
-};
+}
// TODO(metzman): replace std::string with std::string_view for
// better performance. Need to figure our how to use string_view on Windows.