Searched defs:StorageImpl (Results 1 – 1 of 1) sorted by relevance
36 template <typename T> struct StorageImpl : public StorageBase { struct37 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() argument39 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() argument42 return llvm::make_unique<StorageImpl<T>>(Value); in clone() argument50 StorageImpl &operator=(const StorageImpl &Other) = delete; argument