[libcxx-commits] [PATCH] D93025: [libc++] Remove invalid use of `#if _LIBCPP_STD_VER >= 11`, as `_LIBCPP_STD_VER` can never be less than 11.

Marek Kurdej via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Dec 10 06:51:32 PST 2020


curdeius added a comment.

Actually, the choices are:

1. keep the status quo, it means that there will be an `#if` that is equivalent to `#if 1` and is very misleading
2. remove this `#if` altogether (diff no. 2)
3. change to `#ifndef _LIBCPP_CXX03_LANG` and fix the tests that fail (that's what I'm trying to do)


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D93025/new/

https://reviews.llvm.org/D93025



More information about the libcxx-commits mailing list