In C++11 list-initialization refers to initializing a variable using curly braces
2
votes
1answer
219 views
Initialize a constexpr array with user-defined literal
Simplified version
class C {
public:
static constexpr std::array<C, 2> foo {{"1"_C, "2"_C}};
int x;
constexpr C(char c) { x=c; }
}
constexpr C operator"" _C(const char * str, size_t n) { ...
5
votes
1answer
137 views
Uniform initialization of derived class with trivial ctor
I'm trying to wrap my head around some corner cases with c++11 uniform initialization and I can't figure out why is this:
struct Base
{
int x,y,z;
};
struct Derived : Base
{
};
static_assert ...
17
votes
1answer
229 views
Why does the standard differentiate between direct-list-initialization and copy-list-initialization?
We know that T v(x); is called direct-initialization, while T v = x; is called copy-initialization, meaning that it will construct a temporary T from x that will get copied / moved into v (which is ...
5
votes
1answer
117 views
Implementation-defined narrowing conversions?
C++11 formalized the notion of a narrowing conversion, and disallowed using one at the top level in list-initialization.
I am wondering whether, given two types T and U, it is possible for it to be ...
4
votes
2answers
127 views
Can list initialization not be used for private members?
struct A
{
private:
int a, b, c;
};
int main()
{
A a1{};
A a2 = {};
return 0;
}
The code was compiled by VC++ 2012 (with the latest update "Nov 2012 CTP").
I expect a1 and a2 are ...
1
vote
1answer
121 views
Why can't initialize my class from an initializer list even if it derives from std::list?
I have the following code.
#include <utility>
#include <list>
#include <iostream>
class Pair: public std::pair<unsigned int, unsigned int>{
Pair (unsigned int h, unsigned ...
3
votes
2answers
118 views
Is it possible to invoke a user-defined conversion function via list-initialization?
Is this program legal?
struct X { X(const X &); };
struct Y { operator X() const; };
int main() {
X{Y{}}; // ?? error
}
After n2672, and as amended by defect 978, 13.3.3.1 [over.best.ics] ...