1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Always return from non-void functions

This quiets a warning in Clang.
This commit is contained in:
Giuseppe Bilotta 2011-08-08 16:13:48 +02:00
parent 11be390110
commit 163c38e175
2 changed files with 4 additions and 0 deletions

View file

@ -1456,6 +1456,8 @@ public:
i.getNode()->getValue());
}
return *this;
}
Settings & operator=(Settings &other)