We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 455ccde commit a7abe8dCopy full SHA for a7abe8d
llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp
@@ -21,7 +21,9 @@ using namespace object;
21
using SectionPred = std::function<bool(const std::unique_ptr<Section> &Sec)>;
22
23
static Error removeSections(const CopyConfig &Config, Object &Obj) {
24
- SectionPred RemovePred = [](const std::unique_ptr<Section> &) { return false; };
+ SectionPred RemovePred = [](const std::unique_ptr<Section> &) {
25
+ return false;
26
+ };
27
28
if (!Config.ToRemove.empty()) {
29
RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {
0 commit comments