The relevant part of __config is:
#ifndef _LIBCPP_STD_VER # if __cplusplus <= 201103L # define _LIBCPP_STD_VER 11
Differential D93025
[libc++] Remove invalid use of `#if _LIBCPP_STD_VER >= 11`, as `_LIBCPP_STD_VER` can never be less than 11. curdeius on Dec 10 2020, 4:47 AM. Authored by
Details
The relevant part of __config is: #ifndef _LIBCPP_STD_VER # if __cplusplus <= 201103L # define _LIBCPP_STD_VER 11
Diff Detail
Unit Tests Event TimelineComment Actions if you need to remove something for C++03, then the test would be: Comment Actions That's exactly what I did in the first try. Please see diff https://reviews.llvm.org/D93025?id=310846. Comment Actions Actually, the choices are:
|