Replace ESM::RefId::sEmpty by default constructed RefId where possible

Static const is only required to provide a reference or a pointer when it is not
possible with default constructed temporary.
This commit is contained in:
elsid 2023-02-17 19:20:29 +01:00
parent 9487312fb8
commit b5ec584be2
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625
70 changed files with 131 additions and 140 deletions

View file

@ -79,6 +79,6 @@ namespace ESM
mName.clear();
mModel.clear();
mIcon.clear();
mScript = ESM::RefId::sEmpty;
mScript = ESM::RefId();
}
}