Remove impossible _MSC_VER check
authorReid Kleckner <rnk@google.com>
Thu, 19 Apr 2018 19:40:12 +0000 (19:40 +0000)
committerReid Kleckner <rnk@google.com>
Thu, 19 Apr 2018 19:40:12 +0000 (19:40 +0000)
Summary:
It is immediately preceded by this check:
  #if _MSC_VER < 1900
  #error "MSVC versions prior to Visual Studio 2015 are not supported"
  #endif

Reviewers: EricWF

Subscribers: christof, cfe-commits

Differential Revision: https://reviews.llvm.org/D45829

llvm-svn: 330360

libcxx/include/__config

index 8e42abe..84f17a9 100644 (file)
@@ -586,9 +586,6 @@ namespace std {
 #define _LIBCPP_HAS_NO_CONSTEXPR
 #define _LIBCPP_HAS_NO_CXX14_CONSTEXPR
 #define _LIBCPP_HAS_NO_VARIABLE_TEMPLATES
-#if _MSC_VER <= 1800
-#define _LIBCPP_HAS_NO_UNICODE_CHARS
-#endif
 #define _LIBCPP_HAS_NO_NOEXCEPT
 #define __alignof__ __alignof
 #define _LIBCPP_NORETURN __declspec(noreturn)