Skip to content

Commit

Permalink
fixed the errors related to declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhavanaashok33 committed May 25, 2020
1 parent 108c581 commit 65a4043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libopflex/engine/OpflexPEHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ void OpflexPEHandler::handlePolicyResolveRes(uint64_t reqId,
for (it = policy.Begin(); it != policy.End(); ++it) {
const Value& mo = *it;
serializer.deserialize(mo, *client, true, &notifs);
const Value& uriv = mo["uri"];
getProcessor()->removePendingItem(conn, uriv.GetString());
}
const Value& uriv = mo["uri"];
getProcessor()->removePendingItem(conn, uriv.GetString());
}
client->deliverNotifications(notifs);
}
Expand Down

0 comments on commit 65a4043

Please sign in to comment.