[EXT_EP-8748] Initializing unordered_map with an initializer_list fails with -o2 or higher Created: 19/Jan/18 Updated: 28/Jun/22 |
|
Status: | New |
Project: | Embedded Software & Tools |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Medium |
Reporter: | TI User | Assignee: | TI User |
Resolution: | Unresolved | Votes: | 0 |
Remaining Estimate: | Not Specified | ||
Time Spent: | Not Specified | ||
Original Estimate: | Not Specified |
Product: | Code Generation Tools |
Internal ID: | CODEGEN-4329 |
Found In Release: | MSP430_18.1.0.LTS C2000_22.6.0.LTS MSP430_20.2.0.LTS MSP430_21.6.0.LTS C2000_21.6.0.LTS MSP430_18.12.0.LTS |
Release Notes: | The following code prints out 'wg size 1', instead of 'wg size 3', which is the expected value:
#include <unordered_map> #include <initializer_list> int main(void) { const std::pair<const long, wchar_t> wp0(0, L'i'), wp1(1, L'm'), wp2(2, L'p'); std::initializer_list<std::unordered_map<long, wchar_t>::value_type> winit { wp0, wp1, wp2 }; std::unordered_map<long, wchar_t> wg(winit); printf("wg size %zu\n", wg.size()); } |
Description |
Initializing unordered_map with an initializer_list fails with -o2 or higher |