Closed imelekhov closed 6 years ago
Hi, That`s weird - works for me. Probably different version of some lib. Could you please tell me the version, so I can test?
I see! It is related to libzmq
library which is quite old on my machine (v 4.0.4). In this particular version, there is only one interface function inline void connect(const char *addr)
handling a char array and not a string.
Hi, There is an issue in the compilation process. To be more specific, the problem is in line 38 of
imagerepresentation.cpp
file. The interface functionconnect
expects to haveconst char*
as an input butstring
variable is provided. So, changing the original version tosocket.connect(par.port.c_str());
should fix the problem.