forked from OSchip/llvm-project
VMCoreTests/PassManagerTest.cpp: Appease msvc not to do "using llvm::Pass" in class template.
FIXME: I have not checked whether to be compiled on msvc11. llvm-svn: 169225
This commit is contained in:
parent
802d755533
commit
0e9acc94bc
|
@ -148,8 +148,10 @@ namespace llvm {
|
|||
template<typename T, typename P>
|
||||
struct PassTest : public PassTestBase<P> {
|
||||
public:
|
||||
#ifndef _MSC_VER // MSVC complains that Pass is not base class.
|
||||
using llvm::Pass::doInitialization;
|
||||
using llvm::Pass::doFinalization;
|
||||
#endif
|
||||
virtual bool doInitialization(T &t) {
|
||||
EXPECT_FALSE(PassTestBase<P>::initialized);
|
||||
PassTestBase<P>::initialized = true;
|
||||
|
|
Loading…
Reference in New Issue