diff options
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 0659a0f6f3a..48f4c4f0cba 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -9892,12 +9892,12 @@ Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr, } DeclResult Sema::ActOnModuleImport(SourceLocation ImportLoc, ModuleIdPath Path) { - ModuleKey Module = PP.getModuleLoader().loadModule(ImportLoc, Path); - if (!Module) + Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path); + if (!Mod) return true; // FIXME: Actually create a declaration to describe the module import. - (void)Module; + (void)Mod; return DeclResult((Decl *)0); } |