Opened 8 years ago
Closed 8 years ago
#10590 closed Bugs (fixed)
libc++ is always detected as being old
Reported by: | Owned by: | John Maddock | |
---|---|---|---|
Milestone: | To Be Determined | Component: | config |
Version: | Boost Development Trunk | Severity: | Regression |
Keywords: | libc++ libcpp BOOST_NO_CXX11_SMART_PTR | Cc: |
Description
At boost/config/stdlib/libcpp.hpp:34
#if __cpluplus < 201103
This is a typo and should be something like
#if __cplusplus < 201103
Since this couldn't have worked previously, please make sure to also test that the version number is also adequate.
Change History (2)
comment:1 by , 8 years ago
Keywords: | BOOST_NO_CXX11_SMART_PTR added; BU removed |
---|
comment:2 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed and double checked in Git.
Thanks for catching that!