Revert r194247 conditional on non-MSVC.
These definitions are required by the standard. MSVC rejecting them
appears to be a bug.
llvm-svn: 194252
diff --git a/clang-tools-extra/clang-query/Query.cpp b/clang-tools-extra/clang-query/Query.cpp
index 83891a3..dcfa80c 100644
--- a/clang-tools-extra/clang-query/Query.cpp
+++ b/clang-tools-extra/clang-query/Query.cpp
@@ -124,5 +124,10 @@
return true;
}
+#ifndef _MSC_VER
+const QueryKind SetQueryKind<bool>::value;
+const QueryKind SetQueryKind<OutputKind>::value;
+#endif
+
} // namespace query
} // namespace clang