Creation of 0MQ D project

2014-10-27 Thread Evan Lowry via Digitalmars-d-learn
Hey all, I've been playing around w/ D for a little while, and figured I would dive more into it with some side project stuff that has come up at work. The interface I am hooking up to is a zmq server, so I created a dub.json file ~ as follows: { "dependencies": { "zeromq": "~mas

Re: Creation of 0MQ D project

2014-10-27 Thread Evan Lowry via Digitalmars-d-learn
On Tuesday, 28 October 2014 at 00:21:20 UTC, anonymous wrote: Line 96 of zmq.d [1]: const char* zmq_strerror(int errnum); Should be: const(char)* zmq_strerror(int errnum); Yep, this seemed to do the trick cleanly. S'all compiling and the examples provided in the repo run. Can submit a pull req