Core: new blenlib library for implicit-sharing #105994

Merged
Jacques Lucke merged 17 commits from JacquesLucke/blender:implicit-sharing into main 2023-03-28 13:58:02 +02:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit d1541dec17 - Show all commits

View File

@ -80,7 +80,8 @@ class ImplicitSharingInfo : blender::NonCopyable, blender::NonMovable {
};
/**
* Makes it easy to embed implicit-sharing behavior into a struct.
* Makes it easy to embed implicit-sharing behavior into a struct. This also allows the subclass to
JacquesLucke marked this conversation as resolved Outdated

This comment is a bit hard to follow, maybe replacing the subclass with something more specific would help (like saying the ptr class can be used with a class that derives from the mixin class).

This comment is a bit hard to follow, maybe replacing `the subclass` with something more specific would help (like saying the ptr class can be used with a class that derives from the mixin class).
* be used with #ImplicitSharingPtr.
*/
class ImplicitSharingMixin : public ImplicitSharingInfo {
public: