Skip to content
Snippets Groups Projects
Commit 36aaa220 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[walker.apply-on] minor fix in CustomBoundaryIntersections

parent d91ca6df
No related branches found
No related tags found
No related merge requests found
...@@ -355,9 +355,10 @@ public: ...@@ -355,9 +355,10 @@ public:
/** /**
* \attention Takes ownership of boundary_type, do not delete manually! * \attention Takes ownership of boundary_type, do not delete manually!
*/ */
explicit CustomBoundaryIntersections(const BoundaryInfo<IntersectionType>& boundary_info, BoundaryType* boundary_type) explicit CustomBoundaryIntersections(const BoundaryInfo<IntersectionType>& boundary_info,
BoundaryType*&& boundary_type)
: boundary_info_(boundary_info) : boundary_info_(boundary_info)
, boundary_type_(boundary_type) , boundary_type_(std::move(boundary_type))
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment