Skip to content

Commit

Permalink
clf
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Oct 1, 2024
1 parent 6b79732 commit 1fd4c19
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions application/F3DStarter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,8 @@ class F3DStarter::F3DInternals
const std::regex numberingRe("\\{(n:?([0-9]*))\\}");
const std::regex dateRe("date:?([A-Za-z%]*)");

/* Return a file related string depending on the currently loaded files, or the empty string if a single file is loaded */
/* Return a file related string depending on the currently loaded files, or the empty string if
* a single file is loaded */
const auto fileCheck = [&]()
{
if (this->LoadedFiles.size() == 0)
Expand Down Expand Up @@ -1356,7 +1357,7 @@ int F3DStarter::AddFile(const fs::path& path, bool quiet)
assert(this->Internals->FilesGroups.size() == 1);
this->Internals->FilesGroups[0].emplace_back(tmpPath);
}
else // if (this->Internals->AppOptions.MultiFileMode == "single")
else // if (this->Internals->AppOptions.MultiFileMode == "single")
// XXX more grouping mode may be added in the future
{
this->Internals->FilesGroups.emplace_back(std::vector<fs::path>{ tmpPath });
Expand Down

0 comments on commit 1fd4c19

Please sign in to comment.