- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
While we were still on version 11.1, it was said that compiler version 12.0 would fix issues with the GNU header, etc, and that it would include support for initializer lists. (It doesn't appear to do either)
12.0 does improve C++0x support significantly, thank you, but I'm curious if you have a blog/something where I can keep tabs on what features are in development.
E.g. initializer lists,
[cpp]typedef unordered_mapFoo ; Foo foo({ {1, 'a'}, {2, 'd'}, {3, 'c'} }) ; for ( auto it = foo.begin() ; it != foo.end() ; ++it ) { printf("%d: %c\n", it->first, it->second) ; }[/cpp]
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Both features are tracked.
The "unordered_map" is tracked by DPD200027211 ticket.
For the "initializer lists" it's tracked by DPD200190276.
In general we only do bug-fixes for the update release. Because new features need beta testing.Would you be interested in our future beta program? Let me know.
Thank you very much!
Jennifer
The "unordered_map" is tracked by DPD200027211 ticket.
For the "initializer lists" it's tracked by DPD200190276.
In general we only do bug-fixes for the update release. Because new features need beta testing.Would you be interested in our future beta program? Let me know.
Thank you very much!
Jennifer

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page