Skip to content

Commit

Permalink
SerializerConverter: Fixes error: member reference base type 'C *' is…
Browse files Browse the repository at this point in the history
… not a structure
  • Loading branch information
kenorb committed Apr 25, 2024
1 parent 1f1c72d commit 5e57d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SerializerConverter.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class SerializerConverter {

template <typename C>
static SerializerConverter FromString(string arg) {
SerializerConverter _converter(((C*)NULL).Parse(arg), 0);
SerializerConverter _converter(((C*)NULL)PTR_DEREF Parse(arg), 0);
return _converter;
}

Expand Down

0 comments on commit 5e57d6c

Please sign in to comment.