From 67aa5e616c590c2c9596d49f88bde140d99f768a Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 29 Sep 2017 15:25:40 -0500 Subject: [PATCH] compat --- pdbApp/pvif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdbApp/pvif.cpp b/pdbApp/pvif.cpp index b5e1132..b724d4a 100644 --- a/pdbApp/pvif.cpp +++ b/pdbApp/pvif.cpp @@ -779,7 +779,7 @@ struct PVIFMeta : public PVIF PVIFMeta(dbChannel *channel, const epics::pvData::PVFieldPtr& fld, epics::pvData::PVField* enclosing=0) :PVIF(channel) { - pvd::PVStructurePtr field(std::dynamic_pointer_cast(fld)); + pvd::PVStructurePtr field(std::tr1::dynamic_pointer_cast(fld)); if(!field) throw std::logic_error("PVIFMeta attached type mis-match"); meta.chan = channel;