mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +01:00
clang compile fix
This commit is contained in:
@@ -335,7 +335,7 @@ private:
|
|||||||
/// Resets extraction so it can be reused again.
|
/// Resets extraction so it can be reused again.
|
||||||
|
|
||||||
template <class C>
|
template <class C>
|
||||||
typename InternalExtraction<C>::Ptr createExtract(const MetaColumn& mc)
|
SharedPtr<InternalExtraction<C> > createExtract(const MetaColumn& mc)
|
||||||
{
|
{
|
||||||
C* pData = new C;
|
C* pData = new C;
|
||||||
Column<C>* pCol = new Column<C>(mc, pData);
|
Column<C>* pCol = new Column<C>(mc, pData);
|
||||||
@@ -343,7 +343,7 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class C>
|
template <class C>
|
||||||
typename InternalBulkExtraction<C>::Ptr createBulkExtract(const MetaColumn& mc)
|
SharedPtr<InternalBulkExtraction<C> > createBulkExtract(const MetaColumn& mc)
|
||||||
{
|
{
|
||||||
C* pData = new C;
|
C* pData = new C;
|
||||||
Column<C>* pCol = new Column<C>(mc, pData);
|
Column<C>* pCol = new Column<C>(mc, pData);
|
||||||
|
|||||||
Reference in New Issue
Block a user