Home
last modified time | relevance | path

Searched defs:StorageImpl (Results 1 – 1 of 1) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAny.h36 template <typename T> struct StorageImpl : public StorageBase { struct
37 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() function
39 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() function
42 return llvm::make_unique<StorageImpl<T>>(Value); in clone() argument
50 StorageImpl &operator=(const StorageImpl &Other) = delete; argument