refactor(Core): apply clang-tidy modernize-use-equals-default (#3834)
This commit is contained in:
parent
0b8ec1f6ee
commit
1cf39b3d22
35 changed files with 48 additions and 56 deletions
|
|
@ -164,9 +164,7 @@ protected:
|
|||
{
|
||||
}
|
||||
|
||||
virtual ~ScriptObject()
|
||||
{
|
||||
}
|
||||
virtual ~ScriptObject() = default;
|
||||
|
||||
private:
|
||||
|
||||
|
|
@ -177,9 +175,7 @@ template<class TObject> class UpdatableScript
|
|||
{
|
||||
protected:
|
||||
|
||||
UpdatableScript()
|
||||
{
|
||||
}
|
||||
UpdatableScript() = default;
|
||||
|
||||
public:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue