Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAny.h36 struct StorageBase { struct
37 virtual ~StorageBase() = default;
38 virtual std::unique_ptr<StorageBase> clone() const = 0;
42 template <typename T> struct StorageImpl : public StorageBase {
47 std::unique_ptr<StorageBase> clone() const override { in clone()
115 std::unique_ptr<StorageBase> Storage;
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dflexible-array-test.cpp76 struct StorageBase { struct
82 struct Storage : StorageBase {
86 struct VirtStorage : virtual StorageBase {