Skip to content

Commit

Permalink
removed unused this in capture list
Browse files Browse the repository at this point in the history
  • Loading branch information
whoozle committed Nov 10, 2018
1 parent 3ef3c5d commit 5bf7652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuse/fuse_ll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ namespace
mtp::ByteArray data = _session->GetObjectPropertyList(parent, mtp::ObjectFormat::Any, property, 0, 1);
mtp::ObjectPropertyListParser<PropertyValueType> parser;

parser.Parse(data, [this, &objectList, &callback, property](mtp::ObjectId objectId, mtp::ObjectProperty p, const PropertyValueType & value) {
parser.Parse(data, [&objectList, &callback, property](mtp::ObjectId objectId, mtp::ObjectProperty p, const PropertyValueType & value) {
auto it = objectList.find(objectId);
if (property == p && it != objectList.end())
{
Expand Down

0 comments on commit 5bf7652

Please sign in to comment.