== Quote from Andrej Mitrovic ([email protected])'s article > Ok now I definitely need a dfix program. The problem is toUTFz can't > be used in UFCS like toUTF16z could, so now I have to replace all > expression.toUTF16z code to toUTFz!(const(wchar)*)(expression). > Personally I find this thing to be ugly enough to warrant a good alias > anyway. > Anyone clever enough to do this via sed?
Uh...what's wrong with this at the top of every file: alias toUTFz!(const(wchar)*) toUTF16z;
