chore(Core/Shared): restyle shared lib with astyle (#3462)

This commit is contained in:
Kargatum 2020-09-11 11:50:48 +07:00 committed by GitHub
parent d47d6d34f3
commit 8b3621779e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 184 additions and 182 deletions

View file

@ -23,7 +23,7 @@ bool DBCStorageBase::Load(char const* path, char**& indexTable)
indexTable = nullptr;
DBCFileLoader dbc;
// Check if load was sucessful, only then continue
if (!dbc.Load(path, _fileFormat))
return false;
@ -48,7 +48,7 @@ bool DBCStorageBase::LoadStringsFrom(char const* path, char** indexTable)
return false;
DBCFileLoader dbc;
// Check if load was successful, only then continue
if (!dbc.Load(path, _fileFormat))
return false;