Remove unused struct from test

This presumably got inadvertently copied from dllimport-members.cpp.

llvm-svn: 209919
This commit is contained in:
Alp Toker 2014-05-30 21:07:40 +00:00
parent caaa349dc4
commit 7f07d5f3c0
1 changed files with 0 additions and 11 deletions

View File

@ -15,17 +15,6 @@ struct ExplicitSpec_NotExported {};
extern "C" void* malloc(__SIZE_TYPE__ size); extern "C" void* malloc(__SIZE_TYPE__ size);
extern "C" void free(void* p); 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 // Class members