summaryrefslogtreecommitdiff
path: root/view/macho/machoview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'view/macho/machoview.cpp')
-rw-r--r--view/macho/machoview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp
index 3d8b0186..a58fd556 100644
--- a/view/macho/machoview.cpp
+++ b/view/macho/machoview.cpp
@@ -2439,7 +2439,7 @@ Ref<Symbol> MachoView::DefineMachoSymbol(
}
- auto process = [=]() {
+ auto process = [=, this]() {
// If name does not start with alphabetic character or symbol, prepend an underscore
string rawName = name;
if (!(((name[0] >= 'A') && (name[0] <= 'Z')) || ((name[0] >= 'a') && (name[0] <= 'z')) || (name[0] == '_')