core: Inline AttributeContainerValue::CopyFrom to fix build issue in optimized mode

This commit is contained in:
Stefano Avallone
2024-05-09 10:16:35 +02:00
parent ae7e7f370f
commit 5840590ed1

View File

@@ -194,7 +194,7 @@ class AttributeContainerValue : public AttributeValue
* \return This object with items copied.
*/
template <class ITER>
Ptr<AttributeContainerValue<A, Sep, C>> CopyFrom(const ITER begin, const ITER end);
inline Ptr<AttributeContainerValue<A, Sep, C>> CopyFrom(const ITER begin, const ITER end);
container_type m_container; //!< Internal container
};