From 5cb3ffdae4036b79375b4644d38551f6c2b5d0da Mon Sep 17 00:00:00 2001 From: Johan Engelen Date: Mon, 8 Aug 2016 19:18:53 +0200 Subject: [PATCH] Fix C++ header after PR #6001. https://github.com/dlang/dmd/pull/6001 --- src/module.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/module.h b/src/module.h index 47219db24dc9..7699761e0c33 100644 --- a/src/module.h +++ b/src/module.h @@ -127,9 +127,9 @@ class Module : public Package bool read(Loc loc); // read file, returns 'true' if succeed, 'false' otherwise. Module *parse(); // syntactic parse void importAll(Scope *sc); - void semantic(); // semantic analysis - void semantic2(); // pass 2 semantic analysis - void semantic3(); // pass 3 semantic analysis + void semantic(Scope *); // semantic analysis + void semantic2(Scope *); // pass 2 semantic analysis + void semantic3(Scope *); // pass 3 semantic analysis int needModuleInfo(); Dsymbol *search(Loc loc, Identifier *ident, int flags = SearchLocalsOnly); Dsymbol *symtabInsert(Dsymbol *s);