Skip to content

Commit

Permalink
fix brace
Browse files Browse the repository at this point in the history
  • Loading branch information
egecetin committed Jan 1, 2025
1 parent 2e8f17b commit a94fdc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common++/header/LRUList.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ namespace pcpp
{
#if __cplusplus > 199711L || _MSC_VER >= 1800
*deletedValue = std::move(*lruIter);
}
#else
*deletedValue = *lruIter;
#endif
}
m_CacheItemsMap.erase(*lruIter);
m_CacheItemsList.erase(lruIter);
return 1;
Expand Down

0 comments on commit a94fdc6

Please sign in to comment.