Skip to content

Commit 6c728b6

Browse files
committed
Run astyle
1 parent 91b0bf7 commit 6c728b6

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

simplecpp.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3024,8 +3024,7 @@ std::pair<simplecpp::FileData *, bool> simplecpp::FileDataCache::get(const std::
30243024
const auto ret = tryload(ins.first, dui, filenames, outputList);
30253025
if (ret.first != nullptr)
30263026
return ret;
3027-
}
3028-
else {
3027+
} else {
30293028
return std::make_pair(ins.first->second, false);
30303029
}
30313030

@@ -3039,8 +3038,7 @@ std::pair<simplecpp::FileData *, bool> simplecpp::FileDataCache::get(const std::
30393038
const auto ret = tryload(ins.first, dui, filenames, outputList);
30403039
if (ret.first != nullptr)
30413040
return ret;
3042-
}
3043-
else if (ins.first->second != nullptr) {
3041+
} else if (ins.first->second != nullptr) {
30443042
return std::make_pair(ins.first->second, false);
30453043
}
30463044
}
@@ -3052,8 +3050,7 @@ std::pair<simplecpp::FileData *, bool> simplecpp::FileDataCache::get(const std::
30523050
const auto ret = tryload(ins.first, dui, filenames, outputList);
30533051
if (ret.first != nullptr)
30543052
return ret;
3055-
}
3056-
else if (ins.first->second != nullptr) {
3053+
} else if (ins.first->second != nullptr) {
30573054
return std::make_pair(ins.first->second, false);
30583055
}
30593056
}

0 commit comments

Comments
 (0)