regexp conflicts with string
Hasan Aljudy
hasan.aljudy at gmail.com
Mon May 8 15:24:19 PDT 2006
sailormo at tpts6.seed.net.tw wrote:
> Hello:
>
> C:\dmd\bin\..\src\phobos\std\regexp.d(246): function std.regexp.find conflicts w
> ith std.string.find at C:\dmd\bin\..\src\phobos\std\string.d(272)
>
> Why?? why these two standard libraries would conflict with each other??
> And how to solve it??
use full qualified name, i.e. std.regexp.find and std.string.find
you can set aliases too, for example:
alias std.string.find sfind;
alias std.regexp.find xfind;
and then you can just call sfind instead of std.string.find
>
> Thanks ^_^
>
> And by the way, "template instance cannot resolve forward reference" what does
> the message mean?? I use -v to compile, and it seems fine in semantic1 and 2,
> but it fails in semantic3.
>
>
>
More information about the Digitalmars-d
mailing list