Changes between Initial Version and Version 1 of Ticket #59822, comment 14


Ignore:
Timestamp:
Dec 14, 2019, 1:54:00 PM (4 years ago)
Author:
Ionic (Mihai Moldovan)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59822, comment 14

    initial v1  
    11Aaaand that was wrong again. Apple-clang 6.0 does support `gnu++1y` as a parameter to `-std`.
    22
    3 The issue seems to be 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.
     3The 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.
    44
    55If you use the universal initializer for that part, it just works with older compilers (i.e., `{{{}}}` => `{}`).