summaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs
diff options
context:
space:
mode:
authorZequan Wu <zequanwu@google.com>2025-11-21 17:14:34 -0800
committerGitHub <noreply@github.com>2025-11-21 17:14:34 -0800
commit54a4da9df6906b63878ad6d0ea6da3ed7d2d8432 (patch)
tree26d9fa3d54fbec6de66f26ee732881245563f336 /clang/test/Modules/Inputs
parent58e2dde45f775328b71b532e65762a9696ccccbd (diff)
Revert "Reland [MS][clang] Add support for vector deleting destructors" (#169116)
This reverts 4d10c1165442cbbbc0017b48fcdd7dae1ccf3678 and its two dependent commits: e6b9805b574bb5c90263ec7fbcb94df76d2807a4 and c243406a695ca056a07ef4064b0f9feee7685320, see discussion in https://github.com/llvm/llvm-project/pull/165598#issuecomment-3563825509.
Diffstat (limited to 'clang/test/Modules/Inputs')
-rw-r--r--clang/test/Modules/Inputs/msvc-vector-deleting-dtors/module.modulemap1
-rw-r--r--clang/test/Modules/Inputs/msvc-vector-deleting-dtors/msvc-vector-deleting-dtors.h16
2 files changed, 0 insertions, 17 deletions
diff --git a/clang/test/Modules/Inputs/msvc-vector-deleting-dtors/module.modulemap b/clang/test/Modules/Inputs/msvc-vector-deleting-dtors/module.modulemap
deleted file mode 100644
index bb7ff1c9952c..000000000000
--- a/clang/test/Modules/Inputs/msvc-vector-deleting-dtors/module.modulemap
+++ /dev/null
@@ -1 +0,0 @@
-module msvc_vector_deleting_destructors { header "msvc-vector-deleting-dtors.h" export * }
diff --git a/clang/test/Modules/Inputs/msvc-vector-deleting-dtors/msvc-vector-deleting-dtors.h b/clang/test/Modules/Inputs/msvc-vector-deleting-dtors/msvc-vector-deleting-dtors.h
deleted file mode 100644
index 55492667e39d..000000000000
--- a/clang/test/Modules/Inputs/msvc-vector-deleting-dtors/msvc-vector-deleting-dtors.h
+++ /dev/null
@@ -1,16 +0,0 @@
-class Base1 {
-public:
- void operator delete[](void *);
-};
-class Base2 {
-public:
- void operator delete(void *);
-};
-struct Derived : Base1, Base2 {
- virtual ~Derived() {}
-};
-void in_h_tests(Derived *p, Derived *p1) {
- ::delete[] p;
-
- delete[] p1;
-}