From f5114f097961049cd9bf40e3e249bb55c46254d1 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Wed, 4 Nov 2015 14:34:43 +0000 Subject: [PATCH] Initialize member field. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@252045 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Frontend/FrontendOptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Frontend/FrontendOptions.h b/include/clang/Frontend/FrontendOptions.h index 8c841e0942..186e8cf3e7 100644 --- a/include/clang/Frontend/FrontendOptions.h +++ b/include/clang/Frontend/FrontendOptions.h @@ -92,7 +92,7 @@ class FrontendInputFile { bool IsSystem; public: - FrontendInputFile() : Buffer(nullptr), Kind(IK_None) { } + FrontendInputFile() : Buffer(nullptr), Kind(IK_None), IsSystem(false) { } FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false) : File(File.str()), Buffer(nullptr), Kind(Kind), IsSystem(IsSystem) { } FrontendInputFile(llvm::MemoryBuffer *buffer, InputKind Kind, -- 2.40.0