Don't try and hold rvalue's by const ref, it causes issues.
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.
System updates will be applied on Nov 25th between 7am and 9am, EST (UTC-05:00). This site will have intermittent downtime during that time.
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.