Commit ac0f23bc authored by Dominik Charousset's avatar Dominik Charousset

Allow rvalues in apply_objects of save inspectors

parent fb00703d
...@@ -52,7 +52,7 @@ public: ...@@ -52,7 +52,7 @@ public:
} }
template <class... Ts> template <class... Ts>
[[nodiscard]] bool apply_objects(Ts&... xs) { [[nodiscard]] bool apply_objects(Ts&&... xs) {
return (apply_object(xs) && ...); return (apply_object(xs) && ...);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment