From f44dcbfc77ed55c3ee33eaadaf2d032bc294ec91 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Wed, 26 Jun 2019 16:25:20 -0700 Subject: [PATCH] WIN32 fix --- src/utils/pv/hexDump.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/pv/hexDump.h b/src/utils/pv/hexDump.h index d1f4d7c..06d384f 100644 --- a/src/utils/pv/hexDump.h +++ b/src/utils/pv/hexDump.h @@ -47,6 +47,7 @@ public: //! start a new line after this many bytes inline HexDump& bytesPerLine(size_t n=(size_t)-1) { _perLine = n; return *this; } + epicsShareFunc friend std::ostream& operator<<(std::ostream& strm, const HexDump& hex); };