Changeset 510
- Timestamp:
- 07/24/06 13:22:46 (2 years ago)
- Files:
-
- trunk/src/ares/std/regexp.d (modified) (2 diffs)
- trunk/src/dmdrt/genobj.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/ares/std/regexp.d
r498 r510 265 265 !(r.attributes & RegExp.REA.ignoreCase) && // not ignoring case 266 266 !(r.attributes & RegExp.REA.multiline) && // not multiline 267 pattern == slice) // simple pattern (exact match, no special characters) 267 pattern == slice) // simple pattern (exact match, no special characters) 268 268 { 269 269 debug(regexp) … … 2916 2916 // Static version that doesn't require a RegExp object to be created 2917 2917 2918 p rivatestatic rchar[] replace3(rchar[] format, rchar[] input, regmatch_t[] pmatch)2918 public static rchar[] replace3(rchar[] format, rchar[] input, regmatch_t[] pmatch) 2919 2919 { 2920 2920 rchar[] result; trunk/src/dmdrt/genobj.d
r504 r510 97 97 { 98 98 // BUG: this prevents a compacting GC from working, needs to be fixed 99 return cast(int)cast(void *)this - cast(int)cast(void *)o; 99 //return cast(int)cast(void *)this - cast(int)cast(void *)o; 100 101 throw new Exception("need opCmp for class " ~ this.classinfo.name); 100 102 } 101 103
