Skip to content

Commit

Permalink
Switch zmq_addon.hpp to include zmq.hpp using "zmq.hpp" instead of <z…
Browse files Browse the repository at this point in the history
…mq.hpp> This allows it to look in the current directory for the header file. This enables the ability to have cppzmq as a subdirectory of an included folder vs needing to have the cppzmq on the include search path, and makes it less likely the wrong version would get included if more than one zmq.hpp header happened to be available.
  • Loading branch information
phlptp committed Oct 16, 2019
1 parent de05d33 commit 563d235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmq_addon.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef __ZMQ_ADDON_HPP_INCLUDED__
#define __ZMQ_ADDON_HPP_INCLUDED__

#include <zmq.hpp>
#include "zmq.hpp"

#include <deque>
#include <iomanip>
Expand Down

0 comments on commit 563d235

Please sign in to comment.