Fix misleading indentation in sg_path.cxx (g++ warning)

This commit is contained in:
Florent Rougon 2017-04-15 09:33:27 +02:00
parent a962c90b30
commit ef9eedf35a

View File

@ -532,8 +532,9 @@ void SGPath::validate() const
//------------------------------------------------------------------------------
void SGPath::checkAccess() const
{
if( _rwCached && _cacheEnabled )
if ( _rwCached && _cacheEnabled ) {
return;
}
validate();
_rwCached = true;