Skip to content
Snippets Groups Projects
Commit 4e85b427 authored by Nikita Popov's avatar Nikita Popov
Browse files

[MemoryBuiltins] Remove unnecessary lambda capture (NFC)

parent f38d9388
No related branches found
No related tags found
No related merge requests found
......@@ -826,7 +826,7 @@ SizeOffsetType ObjectSizeOffsetVisitor::findLoadSizeOffset(
auto Unknown = [this, &BB, &VisitedBlocks]() {
return VisitedBlocks[&BB] = unknown();
};
auto Known = [this, &BB, &VisitedBlocks](SizeOffsetType SO) {
auto Known = [&BB, &VisitedBlocks](SizeOffsetType SO) {
return VisitedBlocks[&BB] = SO;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment