Searched defs:StorageImpl (Results 1 – 2 of 2) sorted by relevance
35 template <typename T> struct StorageImpl : public StorageBase { struct36 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() argument38 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() argument41 return std::make_unique<StorageImpl<T>>(Value); in clone() argument49 StorageImpl &operator=(const StorageImpl &Other) = delete; argument
35 template <typename T> struct StorageImpl : public StorageBase { struct36 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() function38 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() function41 return std::make_unique<StorageImpl<T>>(Value); in clone() argument49 StorageImpl &operator=(const StorageImpl &Other) = delete; argument