Skip to content

Don't try and hold rvalue's by const ref, it causes issues.

Robert Maynard requested to merge robertmaynard/vtk-m:rvalues_by_ref_bug into master

Previously we tried to capture rvalues by const ref, and would get Undefined Behavior since the rvalue would go out of scope, and than we would try to use it.

Merge request reports