From: Reid Kleckner Date: Thu, 13 Aug 2015 18:10:34 +0000 (+0000) Subject: Try to fix the build after r244923 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59987619e69bf4207398b437521018dd2993b843;p=clang Try to fix the build after r244923 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244926 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/DependencyFile.cpp b/lib/Frontend/DependencyFile.cpp index ba61bbabfd..ec47781887 100644 --- a/lib/Frontend/DependencyFile.cpp +++ b/lib/Frontend/DependencyFile.cpp @@ -486,6 +486,6 @@ bool DFGASTReaderListener::visitInputFile(llvm::StringRef Filename, void DFGASTReaderListener::visitModuleFile(llvm::StringRef Filename, serialization::ModuleKind Kind) { - if (Parent.includeModuleFiles() || Kind == MK_ExplicitModule) + if (Parent.includeModuleFiles() || Kind == serialization::MK_ExplicitModule) Parent.AddFilename(Filename); }