Skip to content

Commit 563d235

Browse files
committed
Switch zmq_addon.hpp to include zmq.hpp using "zmq.hpp" instead of <zmq.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.
1 parent de05d33 commit 563d235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zmq_addon.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#ifndef __ZMQ_ADDON_HPP_INCLUDED__
2525
#define __ZMQ_ADDON_HPP_INCLUDED__
2626

27-
#include <zmq.hpp>
27+
#include "zmq.hpp"
2828

2929
#include <deque>
3030
#include <iomanip>

0 commit comments

Comments
 (0)