This presumably got inadvertently copied from dllimport-members.cpp.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209919
91177308-0d34-0410-b5e6-
96231b3b80d8
extern "C" void* malloc(__SIZE_TYPE__ size);
extern "C" void free(void* p);
-// Used to force non-trivial special members.
-struct ForceNonTrivial {
- ForceNonTrivial();
- ~ForceNonTrivial();
- ForceNonTrivial(const ForceNonTrivial&);
- ForceNonTrivial& operator=(const ForceNonTrivial&);
- ForceNonTrivial(ForceNonTrivial&&);
- ForceNonTrivial& operator=(ForceNonTrivial&&);
-};
-
-
//===----------------------------------------------------------------------===//
// Class members