简体   繁体   中英

Is the GNU C++ library missing an unordered_map constructor?

At least one C++ reference lists following constructor signature:

explicit unordered_map ( const allocator_type& alloc );

It seems that it is not included in /usr/include/c++/4.8.2/bits/unordered_map.h , though. At least I can't spot it and the compiler can't find it, as well.

Thus, my question: Is this constructor specified by the C++ standard? Is the GNU C++ library implementation of unordered_map violating the standard in that respect?

Is this constructor specified by the C++ standard?

Yes.

Is the GNU C++ library implementation of unordered_map violating the standard in that respect?

Yes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM