Changes between Initial Version and Version 1 of Ticket #59822, comment 14
- Timestamp:
- Dec 14, 2019, 1:54:00 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #59822, comment 14
initial v1 1 1 Aaaand that was wrong again. Apple-clang 6.0 does support `gnu++1y` as a parameter to `-std`. 2 2 3 The issue seems to be t ries to explicitly initialize the `std::map` structure inside of the `cmCTestResourceSpec` structure and older compilers choke on that, while it works with newer ones.3 The issue seems to be that the original code tries to explicitly initialize the `std::map` structure inside of the `cmCTestResourceSpec` structure and older compilers choke on that, while it works with newer ones. 4 4 5 5 If you use the universal initializer for that part, it just works with older compilers (i.e., `{{{}}}` => `{}`).