From 563d2355a03915e6dc4650fafbf023c46c17c70d Mon Sep 17 00:00:00 2001 From: Philip Top Date: Wed, 16 Oct 2019 05:56:24 -0700 Subject: [PATCH] Switch zmq_addon.hpp to include zmq.hpp using "zmq.hpp" instead of 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. --- zmq_addon.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zmq_addon.hpp b/zmq_addon.hpp index 322cd9d..b265161 100644 --- a/zmq_addon.hpp +++ b/zmq_addon.hpp @@ -24,7 +24,7 @@ #ifndef __ZMQ_ADDON_HPP_INCLUDED__ #define __ZMQ_ADDON_HPP_INCLUDED__ -#include +#include "zmq.hpp" #include #include