dingmaotu / mql-zmq

ZMQ binding for the MQL language (both 32bit MT4 and 64bit MT5)
Apache License 2.0
553 stars 301 forks source link

Fix compile warning #10

Closed janckerchen closed 6 years ago

janckerchen commented 6 years ago

It's uncomfortable one warning left each time.

screenshot of parallels desktop 2017 10 16 18 47

pass size_t to int

void ZmqMsg::setData(const uchar &data[])
  {
   intptr_t dest=data();
   size_t size=size();
   ArrayToPointer(data,dest,size);    <----- here
  }