Group: explicitly use the default destructor

This makes it more obvious that the default destructor is what we're using, instead of making it look like maybe there was supposed to be a destructor here.
This commit is contained in:
sukibaby
2025-06-20 21:37:23 -07:00
committed by teejusb
parent ac4dd365b1
commit 39c40d09e4
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -36,11 +36,6 @@ Group::Group() {
m_sBannerPath = "";
}
Group::~Group()
{
}
Group::Group(const RString& sDir, const RString& sGroupDirName, bool bFromProfile) {
if (sDir.empty() || sGroupDirName.empty()) {
LOG->Warn("Group::Group: Empty directory or group name provided.");
+1 -1
View File
@@ -20,7 +20,7 @@ class Group
public:
Group();
Group( const RString& sDir, const RString& sGroupDirName, bool bFromProfile = false);
~Group();
~Group() = default;
// Lua
void PushSelf( lua_State *L );