Changeset a853075 in mainline
- Timestamp:
- 2018-07-05T21:41:25Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7ca51cc
- Parents:
- 1caddc6
- git-author:
- Dzejrou <dzejrou@…> (2018-07-03 19:56:22)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:25)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp
r1caddc6 ra853075 342 342 auto tmp = current; 343 343 current = current->next; 344 tmp-> unlink();345 346 --table.size_; 344 tmp->next = tmp; 345 tmp->prev = tmp; 346 347 347 if (!table.keys_equal(key, tmp->value)) 348 348 { … … 355 355 else 356 356 { 357 --table.size_; 357 358 ++res; 358 359
Note:
See TracChangeset
for help on using the changeset viewer.