mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-07-14 05:55:15 +02:00
Revert "Unused parameter warnings removal"
This reverts commit 5350078543
.
This commit is contained in:
parent
22250ae552
commit
84ca992e91
16 changed files with 61 additions and 65 deletions
|
@ -173,7 +173,7 @@ namespace data
|
|||
|
||||
const std::vector<std::shared_ptr<const Lease> > LeaseSet::GetNonExpiredLeases (bool withThreshold) const
|
||||
{
|
||||
return GetNonExpiredLeasesExcluding( [] (const Lease &) -> bool { return false; }, withThreshold);
|
||||
return GetNonExpiredLeasesExcluding( [] (const Lease & l) -> bool { return false; }, withThreshold);
|
||||
}
|
||||
|
||||
const std::vector<std::shared_ptr<const Lease> > LeaseSet::GetNonExpiredLeasesExcluding (LeaseInspectFunc exclude, bool withThreshold) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue