diff dwtx/jface/text/rules/SingleLineRule.d @ 134:51e6e63f930e

Regex fix for casts
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:46:20 +0200
parents 7d818bd32d63
children eb98a5cbfd78
line wrap: on
line diff
--- a/dwtx/jface/text/rules/SingleLineRule.d	Sun Aug 24 01:29:22 2008 +0200
+++ b/dwtx/jface/text/rules/SingleLineRule.d	Sun Aug 24 01:46:20 2008 +0200
@@ -59,7 +59,7 @@
      * @param token the token to be returned on success
      */
     public this(String startSequence, String endSequence, IToken token) {
-        this(startSequence, endSequence, token, (char) 0);
+        this(startSequence, endSequence, token, cast(wchar) 0);
     }
 
     /**