1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

Fix moves in appendOrSet

This commit is contained in:
Jacek Galowicz 2023-11-05 15:27:25 +01:00
parent 28dddde0ac
commit 07ac53732b
3 changed files with 15 additions and 17 deletions

View file

@ -247,7 +247,7 @@ protected:
*
* @param append Whether to append or overwrite.
*/
virtual void appendOrSet(T && newValue, bool append);
virtual void appendOrSet(T newValue, bool append);
public: