From bb505b8ed9de7975f6ea078c002736627ca63dd8 Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Wed, 11 Feb 2015 15:41:12 +0100 Subject: [PATCH] win32: new operators were missing exports --- src/pv/pvData.h | 2 +- src/pv/pvIntrospect.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pv/pvData.h b/src/pv/pvData.h index 7798aec..e045cb1 100644 --- a/src/pv/pvData.h +++ b/src/pv/pvData.h @@ -1570,7 +1570,7 @@ epicsShareExtern PVDataCreatePtr getPVDataCreate(); * stream support for pvField */ namespace std{ - std::ostream& operator<<(std::ostream& o, const epics::pvData::PVField *ptr); + epicsShareExtern std::ostream& operator<<(std::ostream& o, const epics::pvData::PVField *ptr); } #endif /* PVDATA_H */ diff --git a/src/pv/pvIntrospect.h b/src/pv/pvIntrospect.h index 53d236f..cde0421 100644 --- a/src/pv/pvIntrospect.h +++ b/src/pv/pvIntrospect.h @@ -1225,7 +1225,7 @@ struct StructureArrayHashFunction { * stream support for Field */ namespace std{ - std::ostream& operator<<(std::ostream& o, const epics::pvData::Field *ptr); + epicsShareExtern std::ostream& operator<<(std::ostream& o, const epics::pvData::Field *ptr); } #endif /* PVINTROSPECT_H */