move PVValueArray dtor out of line
This class has out of line members, and explicit instanciations. Move the dtor out of line as well to maybe avoid emitting duplicate typeinfo.
This commit is contained in:
@@ -156,6 +156,9 @@ PVValueArray<PVUnionPtr>::PVValueArray(UnionArrayConstPtr const & unionArray)
|
||||
,unionArray(unionArray)
|
||||
{}
|
||||
|
||||
template<typename T>
|
||||
PVValueArray<T>::~PVValueArray() {}
|
||||
|
||||
template<typename T>
|
||||
void PVValueArray<T>::setCapacity(size_t capacity)
|
||||
{
|
||||
|
||||
@@ -1157,7 +1157,7 @@ public:
|
||||
/**
|
||||
* Destructor
|
||||
*/
|
||||
virtual ~PVValueArray() {}
|
||||
virtual ~PVValueArray();
|
||||
|
||||
/**
|
||||
* Get introspection interface.
|
||||
|
||||
Reference in New Issue
Block a user