mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-16 01:45:36 +02:00
Modernize client code (#6250)
* Various code style fixes * Use range based for loops * Use empty instead of empty objects * Use C++11 default keyword for trivial constructors and destructors * Drop some useless casts * Use emplace_back instead of push_back to improve performance of some vectors push
This commit is contained in:
@@ -29,7 +29,7 @@ class RenderingEngine;
|
||||
class ClientLauncher
|
||||
{
|
||||
public:
|
||||
ClientLauncher() {}
|
||||
ClientLauncher() = default;
|
||||
|
||||
~ClientLauncher();
|
||||
|
||||
|
Reference in New Issue
Block a user