Skip to content
Snippets Groups Projects

Make TreeContainer default constructible and thus allow matrix containers

Merged Praetorius, Simon requested to merge feature/treecontainer_default_constructor into master
1 unresolved thread

Merge request reports

Checking pipeline status.

Approval is optional

Set by to be merged automatically when the pipeline succeeds

Ready to merge by members who can write to the target branch.

Merge details

  • 1 commit and 1 merge commit will be added to master.
  • Source branch will be deleted.
  • Auto-merge enabled

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
    Loading