zeromq / zmqpp

0mq 'highlevel' C++ bindings
http://zeromq.github.io/zmqpp
Mozilla Public License 2.0
439 stars 195 forks source link

VC2013 compile fix (no support for constexpr). #110

Closed rcane closed 9 years ago

rcane commented 9 years ago

A new define ZMQPP_NO_CONSTEXPR was introduced in compatibility.h. It is set for all versions of VC++ including VC2013. VC2015 should have support for constexpr but needs to be tested when it is available.

This fixes #99.

xaqq commented 9 years ago

Thank you.