DlangUI Error
HyperParrow via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Thu Aug 10 15:27:44 PDT 2017
On Thursday, 10 August 2017 at 20:48:23 UTC, Jiyan wrote:
> Hey,
> i get the following errors when i try to use dlangui, by just
> importing the package i get a lot of errors which look like:
> function std.xml.Item.opEquals does not override any function,
> did you mean to override 'object.Object.opEquals'?
>
> What is happening there?
The error message is correct but the error is only recognized by
the compiler since the latest release. To fix it requires
intervention of the author: either "override" must be removed
from the opEquals that's indicated or the opEquals parameters
must be changed o match exactly the signature used on
Object.opEquals.
Until this is done in libdlangui you can use an older compiler,
e.g last 2.074.x release should make the error disappearing
(since it wasn't detected yet).
More information about the Digitalmars-d-learn
mailing list