Commits
Ryan Schmidt authored d9772b44e14
1 + | Fix build with clang on libstdc++ systems. |
2 + | https://lists.gnu.org/archive/html/bug-commoncpp/2019-05/msg00000.html |
3 + | --- inc/ucommon/platform.h.orig 2015-11-07 12:15:59.000000000 -0600 |
4 + | +++ inc/ucommon/platform.h 2019-05-23 23:06:33.000000000 -0500 |
5 + | |
6 + | #if __cplusplus <= 199711L && !defined(_MSC_VER) |
7 + | #if defined(__GNUC_MINOR__) && !defined(__clang__) |
8 + | #define nullptr __null |
9 + | -#elif !defined(__clang__) || (defined(__clang__) && defined(__linux__)) |
10 + | +#elif !defined(__clang__) || (defined(__clang__) && !defined(_LIBCPP_VERSION)) |
11 + | const class nullptr_t |
12 + | { |
13 + | public: |