code format .

This commit is contained in:
Zero Fanker 2024-08-02 11:16:10 -04:00
parent 98edf6b910
commit d5cf156aeb

View file

@ -67,7 +67,9 @@ WORD CIniFile::LoadFile(const std::string& filename, BOOL bNoSpaces)
{
Clear();
if (filename.size() == NULL) return 1;
if (filename.size() == NULL) {
return 1;
}
m_filename = filename;
return(InsertFile(filename, NULL, bNoSpaces));
@ -77,7 +79,6 @@ WORD CIniFile::LoadFile(const std::string& filename, BOOL bNoSpaces)
void CIniFile::Clear()
{
sections.clear();
}