MessagePack

Andrej Mitrovic andrej.mitrovich at gmail.com
Wed Mar 21 11:30:39 PDT 2012


On 3/21/12, Andrej Mitrovic <andrej.mitrovich at gmail.com> wrote:
> On 3/21/12, Masahiro Nakagawa <repeatedly at gmail.com> wrote:
>> This feature enables MessagePack to (de)serialize existing class
>> and struct :)
>
> Hi,
>
> it seems MessagePack won't compile with 2.058:

It seems to work if I change two opEquals functions from:

bool opEquals(T : MPObject[])(in T other) const
bool opEquals(T : MPObject[MPObject])(in T other) const

to:
bool opEquals()(auto ref const MPObject[] other) const
bool opEquals()(auto ref const MPObject[MPObject] other) const


More information about the Digitalmars-d mailing list