Home
last modified time | relevance | path

Searched refs:StorageBase (Results 1 – 2 of 2) sorted by relevance

/llvm-project/llvm/include/llvm/ADT/
H A DAny.h38 struct StorageBase { struct
39 virtual ~StorageBase() = default;
40 virtual std::unique_ptr<StorageBase> clone() const = 0;
44 template <typename T> struct StorageImpl : public StorageBase {
49 std::unique_ptr<StorageBase> clone() const override { in clone()
124 std::unique_ptr<StorageBase> Storage;
/llvm-project/clang/test/SemaCXX/
H A Dflexible-array-test.cpp76 struct StorageBase { struct
82 struct Storage : StorageBase {
86 struct VirtStorage : virtual StorageBase {