Changeset 37:cf2e8cc26f87 in rrlib_concurrent_containers
- Timestamp:
- 06.02.2021 21:11:43 (2 years ago)
- Branch:
- 17.03
- Children:
- 38:041041479073, 39:26f8a5bb40c7
- Phase:
- public
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
policies/set/storage/ArrayChunkBased.h
r31 r37 328 328 } 329 329 330 inline constbool operator == (const tIteratorImplementation &other) const330 inline bool operator == (const tIteratorImplementation &other) const 331 331 { 332 332 return current_array_entry == other.current_array_entry; 333 333 } 334 inline constbool operator != (const tIteratorImplementation &other) const334 inline bool operator != (const tIteratorImplementation &other) const 335 335 { 336 336 return !(*this == other); -
queue/tIntrusiveLinkedFragmentBasedQueue.h
r22 r37 87 87 tQueueableMost* ex_last = last.exchange(NULL); 88 88 result.InitLIFO(ex_last, -1); 89 return std::move(result);89 return result; 90 90 } 91 91 … … 299 299 300 300 result.InitLIFO(ex_last_ptr, max_length); 301 return std::move(result);301 return result; 302 302 } 303 303 -
queue/tIntrusiveSingleThreadedQueue.h
r22 r37 111 111 this->next_single_threaded_queueable = this; 112 112 last = this; 113 return std::move(result);113 return result; 114 114 } 115 115 … … 167 167 next = NULL; 168 168 last = NULL; 169 return std::move(result);169 return result; 170 170 } 171 171
Note: See TracChangeset
for help on using the changeset viewer.