Repository: qpid-proton Updated Branches: refs/heads/master 2390f77ec -> 9e2649ac4
PROTON-1159: Fixed linage for proton::internal::print_hex() Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/9e2649ac Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/9e2649ac Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/9e2649ac Branch: refs/heads/master Commit: 9e2649ac4f4996bbd84c217761fb506569cfd2a8 Parents: caf4f8a Author: Kim van der Riet <[email protected]> Authored: Mon Mar 21 15:53:32 2016 -0400 Committer: Kim van der Riet <[email protected]> Committed: Mon Mar 21 15:56:14 2016 -0400 ---------------------------------------------------------------------- proton-c/bindings/cpp/include/proton/byte_array.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/9e2649ac/proton-c/bindings/cpp/include/proton/byte_array.hpp ---------------------------------------------------------------------- diff --git a/proton-c/bindings/cpp/include/proton/byte_array.hpp b/proton-c/bindings/cpp/include/proton/byte_array.hpp index d695007..9ba6abf 100644 --- a/proton-c/bindings/cpp/include/proton/byte_array.hpp +++ b/proton-c/bindings/cpp/include/proton/byte_array.hpp @@ -19,6 +19,7 @@ * under the License. */ +#include "proton/export.hpp" #include <proton/types_fwd.hpp> #include <proton/comparable.hpp> @@ -26,9 +27,8 @@ #include <iterator> namespace proton { - namespace internal { -void print_hex(std::ostream& o, const uint8_t* p, size_t n); +PN_CPP_EXTERN void print_hex(std::ostream& o, const uint8_t* p, size_t n); } /// Used to represent fixed-sized data types that don't have a natural C++ representation --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
