CONFIG: always allow spaces in fileName for Windows (#1238)

- this cannot be left as a configurable value (on windows), since it
  needs to be enabled even prior to reading the etc/controlDict file,
  in case the OpenFOAM installation path itself contains spaces.
This commit is contained in:
Mark Olesen 2019-07-09 18:04:23 +02:00 committed by Andrew Heather
parent 4b8fabaa4b
commit eda4cbd55c
2 changed files with 3 additions and 3 deletions

View File

@ -68,8 +68,8 @@ InfoSwitches
allowSystemOperations 1;
// Allow space character in fileName (use with caution)
// Default: 0 for non-Windows, 1 for Windows
//// allowSpaceInFileName 0;
// Ignored (always 1) for Windows.
allowSpaceInFileName 0;
}

View File

@ -42,7 +42,7 @@ int Foam::fileName::debug(Foam::debug::debugSwitch(fileName::typeName, 0));
int Foam::fileName::allowSpaceInFileName
(
#ifdef _WIN32
Foam::debug::infoSwitch("allowSpaceInFileName", 1)
1 // Windows: expect spaces to occur
#else
Foam::debug::infoSwitch("allowSpaceInFileName", 0)
#endif