Make TreeContainer default constructible and thus allow matrix containers
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
97 return accessByTreePath(container[head], pop_front(path)); 99 98 } 100 99 101 100 public: 102 TreeContainerVectorBackend(Container&& container) : 103 container_(std::move(container)) 104 {} 101 TreeContainerVectorBackend() = default; 105 102 106 TreeContainerVectorBackend(TreeContainerVectorBackend&& other) : 107 container_(std::move(other.container_)) 103 TreeContainerVectorBackend(Container&& container) 104 : container_(std::move(container)) 108 105 {} 109 106 107 TreeContainerVectorBackend(const Self&) = default; mentioned in commit 10035430
Please register or sign in to reply