Thread overview | ||||||||
---|---|---|---|---|---|---|---|---|
|
June 12, 2013 Strange error when importing std.regex | ||||
---|---|---|---|---|
| ||||
Hello guys! http://dpaste.1azy.net/9c4c3eb8 http://dpaste.1azy.net/afd8d20b How i can avoid this? |
June 12, 2013 Re: Strange error when importing std.regex | ||||
---|---|---|---|---|
| ||||
Posted in reply to Temtaime | Temtaime:
> How i can avoid this?
You have to qualify where the function comes from. One way to do it is to use:
std.algorithm.splitter(arr, 1);
Bye,
bearophile
|
June 12, 2013 Re: Strange error when importing std.regex | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile | Oh, thanks very much. |
June 12, 2013 Re: Strange error when importing std.regex | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile | 12-Jun-2013 17:28, bearophile пишет: > Temtaime: > >> How i can avoid this? > > You have to qualify where the function comes from. One way to do it is > to use: > There is no ambiguity, 1 is not a Regex object but it seems like template constraint in std.regex blows up. @Temtaime please file a bug on this. http://d.puremagic.com/issues/ > std.algorithm.splitter(arr, 1); > > Bye, > bearophile -- Dmitry Olshansky |
June 12, 2013 Re: Strange error when importing std.regex | ||||
---|---|---|---|---|
| ||||
Posted in reply to Dmitry Olshansky | Dmitry Olshansky:
> There is no ambiguity, 1 is not a Regex object but it seems like template constraint in std.regex blows up.
>
> @Temtaime please file a bug on this.
> http://d.puremagic.com/issues/
>> std.algorithm.splitter(arr, 1);
I think this bug already surfaced some time ago... Maybe it's already in Bugzilla.
Bye,
bearophile
|
June 13, 2013 Re: Strange error when importing std.regex | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile | On Wednesday, 12 June 2013 at 18:44:12 UTC, bearophile wrote: > Dmitry Olshansky: > >> There is no ambiguity, 1 is not a Regex object but it seems like template constraint in std.regex blows up. >> >> @Temtaime please file a bug on this. >> http://d.puremagic.com/issues/ >>> std.algorithm.splitter(arr, 1); > > I think this bug already surfaced some time ago... Maybe it's already in Bugzilla. > > Bye, > bearophile Right now I cannot see the original code in dpaste, but the issue would be a same bug with 8352. http://d.puremagic.com/issues/show_bug.cgi?id=8352 I have maintained a compiler fix for that, but unfortunately it is not yet merged. https://github.com/D-Programming-Language/dmd/pull/1660 Kenji Hara |
Copyright © 1999-2021 by the D Language Foundation