From 9cf062df22ecbe7acd61c6aeee0875086a3db30e Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Wed, 13 Sep 2017 09:54:20 -0500 Subject: [PATCH] fix c++11-ism --- pdbApp/pdbsingle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdbApp/pdbsingle.cpp b/pdbApp/pdbsingle.cpp index 9d16992..ad1d287 100644 --- a/pdbApp/pdbsingle.cpp +++ b/pdbApp/pdbsingle.cpp @@ -76,7 +76,7 @@ PDBSinglePV::PDBSinglePV(DBCH& chan, ,hadevent_PROPERTY(false) { this->chan.swap(chan); - fielddesc = std::static_pointer_cast(builder->dtype(this->chan)); + fielddesc = std::tr1::static_pointer_cast(builder->dtype(this->chan)); complete = pvd::getPVDataCreate()->createPVStructure(fielddesc); pvif.reset(builder->attach(this->chan, complete));