0
votes
6answers
376 views
C++ standard list and default-constructible types
Why is that the single parameter constructor of std::list<T> requires T to be a default-constructible type? I mean the following code does not compile.
…
1
vote
STL container assignment and const pointers.
Coercion by Member Template idiom is one possible approach to solve the problem. …
