From 0513d1e2031c7d779a50bd4d474be19a4cecd3ea Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 27 May 2016 21:05:35 +0000 Subject: [PATCH] Fix compilation with GCC, which treats this as a constructor name not a type name. (GCC is correct here per the latest language DRs.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271044 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Fuzzer/FuzzerTraceState.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Fuzzer/FuzzerTraceState.cpp b/lib/Fuzzer/FuzzerTraceState.cpp index 9426fb9d1ca..3ee69e43aba 100644 --- a/lib/Fuzzer/FuzzerTraceState.cpp +++ b/lib/Fuzzer/FuzzerTraceState.cpp @@ -175,7 +175,7 @@ static bool RecordingMemcmp = false; class TraceState { public: TraceState(MutationDispatcher &MD, const Fuzzer::FuzzingOptions &Options, - const Fuzzer::Fuzzer *F) + const Fuzzer *F) : MD(MD), Options(Options), F(F) {} LabelRange GetLabelRange(dfsan_label L); -- 2.11.0