don't use deprecated PVValueArray<T>::get()

This commit is contained in:
Michael Davidsaver
2013-07-25 17:54:46 -04:00
parent e96b447e37
commit 0860f8e6f9
4 changed files with 18 additions and 27 deletions

View File

@@ -28,16 +28,4 @@ namespace epics { namespace pvData {
return static_pointer_cast<const ScalarArray>(PVField::getField());
}
template<>
std::ostream& PVValueArray<int8>::dumpValue(std::ostream& o, size_t index) const
{
return o << static_cast<int>(*(get() + index));
}
template<>
std::ostream& PVValueArray<uint8>::dumpValue(std::ostream& o, size_t index) const
{
return o << static_cast<unsigned int>(*(get() + index));
}
}}