From 3e229457a7cf23c4ef43831347036c72730c8414 Mon Sep 17 00:00:00 2001 From: sfc-gh-tclinkenbeard Date: Wed, 5 May 2021 14:18:06 -0700 Subject: [PATCH] Use default initializer for TraceEvent::errorKind --- flow/Trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/Trace.h b/flow/Trace.h index ef86671cc1..4c2eadb215 100644 --- a/flow/Trace.h +++ b/flow/Trace.h @@ -483,7 +483,7 @@ private: std::string trackingKey; TraceEventFields fields; Severity severity; - ErrorKind errorKind; + ErrorKind errorKind{ ErrorKind::Unset }; const char* type; UID id; Error err;