Searched defs:StorageImpl (Results 1 – 1 of 1) sorted by relevance
40 template <typename T> struct StorageImpl : public StorageBase { struct41 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() argument43 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() function46 return std::make_unique<StorageImpl<T>>(Value); in clone() argument54 StorageImpl &operator=(const StorageImpl &Other) = delete; argument