mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-29 07:19:28 -05:00
Coding style adaptations
This commit is contained in:
@@ -696,7 +696,9 @@ std::vector<std::string> HorizonsFile::parseMatches(const std::string& startPhra
|
||||
matches.push_back(line);
|
||||
break;
|
||||
}
|
||||
else if (!altStartPhrase.empty() && line.find(altStartPhrase) != std::string::npos) {
|
||||
else if (!altStartPhrase.empty() &&
|
||||
line.find(altStartPhrase) != std::string::npos)
|
||||
{
|
||||
matches.push_back(line);
|
||||
break;
|
||||
}
|
||||
@@ -778,7 +780,9 @@ std::pair<std::string, std::string> HorizonsFile::parseValidTimeRange(
|
||||
if (line.find(startPhrase) != std::string::npos) {
|
||||
break;
|
||||
}
|
||||
else if (!altStartPhrase.empty() && line.find(altStartPhrase) != std::string::npos) {
|
||||
else if (!altStartPhrase.empty() &&
|
||||
line.find(altStartPhrase) != std::string::npos)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user