0
votes
6answers
363 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.
…
3
votes
3answers
285 views
member template specialization and its scope
It appears to me that C++ does not allow member template specialization in any scope other than namespace and global scope (MS VSC++ Error C3412). But to me it makes sense to specialize a base clas …
8
votes
2answers
101 views
Why is non-type template parameter expression handling inconsistent across compilers?
Here is something I observed across various compilers. It seems there are compiler bugs.
template <int I>
struct X
{ };
int main(void)
{
X<(16 > 1)> a; // Wo …
12
votes
Hidden Features of C++?
Hidden features:
Pure virtual functions can have implementation.
Exception specifications and std::bad_exception. Read more:
…
10
votes
C++ blogs that you regularly follow?
Not a blog but new C++ contents are added frequently: More C++ Idioms
…
1
vote
STL container assignment and const pointers.
Coercion by Member Template idiom is one possible approach to solve the problem. …
