diff options
Diffstat (limited to 'include/cru/ui/mapper/Mapper.h')
-rw-r--r-- | include/cru/ui/mapper/Mapper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/ui/mapper/Mapper.h b/include/cru/ui/mapper/Mapper.h index 5bf140cd..e059f9c0 100644 --- a/include/cru/ui/mapper/Mapper.h +++ b/include/cru/ui/mapper/Mapper.h @@ -90,8 +90,8 @@ class CRU_UI_API BasicMapper : public MapperBase { }; template <typename T> -using BasicRefMapper = BasicMapper<std::shared_ptr<T>>; +using BasicSharedPtrMapper = BasicMapper<std::shared_ptr<T>>; template <typename T> -using BasicPtrMapper = BasicMapper<ClonablePtr<T>>; +using BasicClonablePtrMapper = BasicMapper<ClonablePtr<T>>; } // namespace cru::ui::mapper |