Added additional explicit template instantiations to fix build problems on macos with c+11

This commit is contained in:
Daniel Damiani
2019-07-03 18:41:01 -07:00
committed by mdavidsaver
parent c2bc77a649
commit 31802a8bde

View File

@@ -758,6 +758,18 @@ template class PVScalarValue<uint64>;
template class PVScalarValue<float>;
template class PVScalarValue<double>;
template class PVScalarValue<std::string>;
template class PVValueArray<boolean>;
template class PVValueArray<int8>;
template class PVValueArray<uint8>;
template class PVValueArray<int16>;
template class PVValueArray<uint16>;
template class PVValueArray<int32>;
template class PVValueArray<uint32>;
template class PVValueArray<int64>;
template class PVValueArray<uint64>;
template class PVValueArray<float>;
template class PVValueArray<double>;
template class PVValueArray<std::string>;
}} // namespace epics::pvData