diff --git a/src/Shapes/Composition.cpp b/src/Shapes/Composition.cpp index 08c424180..456071772 100644 --- a/src/Shapes/Composition.cpp +++ b/src/Shapes/Composition.cpp @@ -59,7 +59,7 @@ Because these values are relative to parent, they don't need to be modified when concatenating. */ -template Composition::Composition(const Composition& other) { +template Composition::Composition(const Composition& other): _shapes(other._shapes.size()), _nodes(other._nodes.size()) { copyShapes(0, other); copyNodes(0, other); }