1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[llvm-objcopy][MachO] Fix code formatting

Apply clang-format to MachOObjcopy.cpp. NFC.

Test plan: make check-all
This commit is contained in:
Alexander Shaposhnikov 2020-05-17 20:46:17 -07:00
parent 159ec3f544
commit 742719477a

View File

@ -21,7 +21,9 @@ using namespace object;
using SectionPred = std::function<bool(const std::unique_ptr<Section> &Sec)>;
static Error removeSections(const CopyConfig &Config, Object &Obj) {
SectionPred RemovePred = [](const std::unique_ptr<Section> &) { return false; };
SectionPred RemovePred = [](const std::unique_ptr<Section> &) {
return false;
};
if (!Config.ToRemove.empty()) {
RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {