Skip to content

Commit

Permalink
Remove wrong change
Browse files Browse the repository at this point in the history
Signed-off-by: Barry Xu <barry.xu@sony.com>
  • Loading branch information
Barry-Xu-2018 committed Feb 22, 2023
1 parent aeaf0f4 commit 324f864
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ class AllocatorMemoryStrategy : public memory_strategy::MemoryStrategy
{
auto & waitable_handles =
waitable_triggered_handles_.empty() ? waitable_handles_ : waitable_triggered_handles_;
auto it = waitable_handles.begin();
while (it != waitable_handles.end()) {
std::shared_ptr<Waitable> waitable = *it;
auto it = waitable_handles_.begin();
while (it != waitable_handles_.end()) {
std::shared_ptr<Waitable> & waitable = *it;
if (waitable) {
// Find the group for this handle and see if it can be serviced
auto group = get_group_by_waitable(waitable, weak_groups_to_nodes);
Expand Down

0 comments on commit 324f864

Please sign in to comment.