Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h44 template <typename T> struct StorageImpl : public StorageBase { struct
45 explicit StorageImpl(const T &Value) : Value(Value) {} in StorageImpl() function
47 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} in StorageImpl() argument
50 return std::make_unique<StorageImpl<T>>(Value); in clone() argument
58 StorageImpl &operator=(const StorageImpl &Other) = delete; argument