Closed aconstlink closed 11 months ago
Again I stumbled upon the _mtr_t and _mtr_moved_t ambiguity.
_mtr_t
_mtr_moved_t
Whats needs to be differentiated is if a pointer
Somehow this needs better distinction. This could be like so:
some_class_mtr_shared_t // ownership needs addition some_class_mtr_unique_t // ownership is transferred
So we need wrappers for both. Although this distinction is only required if both are passed to a function overload.
Implemented like described above. :recycle:
Again I stumbled upon the
_mtr_t
and_mtr_moved_t
ambiguity.Whats needs to be differentiated is if a pointer
Somehow this needs better distinction. This could be like so:
So we need wrappers for both. Although this distinction is only required if both are passed to a function overload.