diff trunk/src/dil/Information.d @ 744:7173ece1b696

Wrapped some macro functions inside struct MacroExpander. Warning messages from the macro expansion pass are collected now. Tidied up predefined.ddoc a bit, and added some macros. Added two messages to struct MSG. Added another opCatAssign to class InfoManager.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 09 Feb 2008 22:54:31 +0100
parents 50e64bab9c7a
children 9c47f377ca0b
line wrap: on
line diff
--- a/trunk/src/dil/Information.d	Sat Feb 09 19:27:14 2008 +0100
+++ b/trunk/src/dil/Information.d	Sat Feb 09 22:54:31 2008 +0100
@@ -22,6 +22,11 @@
   {
     this.info ~= info;
   }
+
+  void opCatAssign(Information[] info)
+  {
+    this.info ~= info;
+  }
 }
 
 class Problem : Information