diff dmd/module.h @ 604:a30fc28e8f23

Make creating and deleting of doc and hdr files dependent on whether doc and hdr files are to be generated. Fixes html_empty_01,02
author Christian Kamm <kamm incasoftware de>
date Tue, 16 Sep 2008 09:00:05 +0200
parents 7824c21a58e3
children eef8ac26c66c
line wrap: on
line diff
--- a/dmd/module.h	Tue Sep 16 08:42:40 2008 +0200
+++ b/dmd/module.h	Tue Sep 16 09:00:05 2008 +0200
@@ -110,6 +110,9 @@
     Macro *macrotable;		// document comment macros
     struct Escape *escapetable;	// document comment escapes
 
+    int doDocComment;		// enable generating doc comments for this module
+    int doHdrGen;		// enable generating header file for this module
+
     Module(char *arg, Identifier *ident, int doDocComment, int doHdrGen);
     ~Module();