Revert r194247 conditional on non-MSVC.

These definitions are required by the standard.  MSVC rejecting them
appears to be a bug.

llvm-svn: 194252
This commit is contained in:
Peter Collingbourne 2013-11-08 08:54:53 +00:00
parent 523bea8a39
commit c7ae6101a4
1 changed files with 5 additions and 0 deletions

View File

@ -124,5 +124,10 @@ bool MatchQuery::run(llvm::raw_ostream &OS, QuerySession &QS) const {
return true;
}
#ifndef _MSC_VER
const QueryKind SetQueryKind<bool>::value;
const QueryKind SetQueryKind<OutputKind>::value;
#endif
} // namespace query
} // namespace clang