mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: adjust fileName methods for similarity to std::filesystem::path
- stem(), replace_name(), replace_ext(), remove_ext() etc
- string::contains() method - similar to C++23 method
Eg,
if (keyword.contains('/')) ...
vs
if (keyword.find('/') != std::string::npos) ...
This commit is contained in:
@ -291,7 +291,7 @@ int main(int argc, char *argv[])
|
||||
// (ie, probably not a surface filename at all).
|
||||
// If it is missing, this will fail nicely with an appropriate error
|
||||
// message.
|
||||
if (surfaceDict.found("surfaces") || !dictName.hasExt())
|
||||
if (surfaceDict.found("surfaces") || !dictName.has_ext())
|
||||
{
|
||||
loader.select(surfaceDict.get<wordRes>("surfaces"));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user