Changeset aefdccd in mainline for uspace/lib/cpp/include/__bits/adt/list.hpp
- Timestamp:
- 2025-10-20T06:14:54Z (4 months ago)
- Parents:
- adbd7e1 (diff), 3e41cc4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2025-10-20 06:14:54)
- git-committer:
- GitHub <noreply@…> (2025-10-20 06:14:54)
- File:
-
- 1 edited
-
uspace/lib/cpp/include/__bits/adt/list.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/__bits/adt/list.hpp
radbd7e1 raefdccd 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2019 Jaroslav Jindrak 3 4 * All rights reserved. … … 80 81 } 81 82 83 pointer operator->() const 84 { 85 return ¤t_->value; 86 } 87 82 88 list_const_iterator& operator++() 83 89 { … … 209 215 return current_->value; 210 216 } 217 218 pointer operator->() const 219 { 220 return ¤t_->value; 221 } 211 222 212 223 list_iterator& operator++()
Note:
See TracChangeset
for help on using the changeset viewer.
