A C++11 feature which allows braces to be used to initialize any type of variable in any context
1
vote
1answer
34 views
Uniform initialization with ternary operator return from function
I don't know if this is a compiler bug (gcc 4.8 on Arch Linux) or a problem with the standard, but the code below fails to compile. Why is getFoo1 allowed but not getFoo2?
struct Foo {
int _i;
...
4
votes
3answers
179 views
Attempted construction of temporary object using only class name in declaration
C++
Objects of this class couts messages when they are constructed and destroyed. I tried to construct a temporary object using a declaration of only the class name, but it gave an unexpected output.
...
8
votes
1answer
293 views
Uniform initialization on a vector of vectors of integers
C++11
The program initializes a vector, named myVec, of int vectors, and then uses a loop to print out each inner vector's elements. But I got unexpected results when trying to see what happens when ...
1
vote
1answer
90 views
Can't get move constructor to run
C++11
I'm having trouble using the move constructor. I have a simple container class, called Number, whose only data member is an integer. I have the following code:
//Number.h
#ifndef NUMBER_H
...
6
votes
1answer
200 views
Simple program using uniform initialization to construct an object fails to compile
Consider the following program:
struct X
{
X(int, int) { }
X(X&&) { }
};
int main()
{
X x( {0, 1} ); // Doesn't compile on ICC 13.0.1, compiles on
// Clang ...
7
votes
1answer
184 views
'Excess elements in struct initializer' error with C++11 uniform initialization
I am surprised by the following compiler error:
template <typename T>
struct A
{
A(T t): t_{t} {}
T t_;
};
struct S
{
};
int main()
{
A<S> s{S{}};
}
The error is (with ...
0
votes
1answer
85 views
std::array uniform initializer failure [closed]
Both lines of code from this very reliable source ..
std::array<int, 3> a1{ {1,2,3} }; // double-braces required
std::array<int, 3> a2 = {1, 2, 3}; // except after =
give the ...
5
votes
1answer
135 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 ...
42
votes
4answers
2k views
Why does this snippet using uniform initialization compile with g++4.6 but not g++4.7?
Note that derived uses C++11 uniform initialization syntax to call the base class constructor.
class base
{
protected:
base()
{}
};
class derived : public base
{
public:
...
3
votes
3answers
190 views
uniform initialization for dynamic objects
#include <memory>
struct foo
{
std::unique_ptr<int> p;
};
int main()
{
foo bar { std::unique_ptr<int>(new int(42)) };
// okay
new foo { ...
10
votes
2answers
336 views
Why can't I initialize a reference in an initializer list with uniform initialization?
That is, why does this:
struct S {};
struct T
{
T(S& s) : s{s} {}
S& s;
};
int main()
{
S s;
T t{s};
}
give me a compiler error with GCC 4.7:
test.cpp: In constructor ...
6
votes
2answers
277 views
Uniform initialization with {} reporting unused variable
Compiling this code with g++ 4.7.0 (-Wall -Wextra -Werror -Wconversion -std=c++11):
#include <iostream> // std::cout, std::endl
#include <string> // std::string
#include ...
10
votes
3answers
2k views
Why does 'std::vector<int> b{2};' create a 1-element vector, and not a 2-element one?
I've been playing around with C++11 for the past few days, and I came up with something strange.
If I want to uniformly initialize an int:
int a{5};
But if I do the same thing to a std::vector:
...
13
votes
1answer
753 views
Why doesn't emplace_back() use uniform initialization?
The following code:
#include <vector>
struct S
{
int x, y;
};
int main()
{
std::vector<S> v;
v.emplace_back(0, 0);
}
Gives the following errors when compiled with GCC:
In ...
2
votes
1answer
88 views
Macro/inline-function workaround for missing uniform initializers in MSVC10/11
Is there a semi-transparent way that would make it easier to code in a style similar to what one would do with uniform initializers, without using the actual feature?
I'm willing to give up the type ...
4
votes
1answer
168 views
Direct vs uniform initialization in std::allocator
This question has also been submitted to Usenet, where it is more appropriate, but this is a larger and more reliable forum.
std::allocator::construct is defined to forward its argument parameter
...
5
votes
3answers
1k views
How to use C++11 uniform initialization syntax?
I cannot understand when and how to use the new uniform initialization syntax in C++11.
For example, I get this:
std::string a{"hello world"}; // OK
std::string b{a}; // NOT OK
Why does it not ...
3
votes
2answers
143 views
How to “reduce typing to create C++ types” with Uniform Initializers?
I have played a lot the new Uniform Initialization with {}. Like this:
vector<int> x = {1,2,3,4};
map<int,string> getMap() {
return { {1,"hello"}, {2,"you"} };
}
It is undisputed ...
14
votes
4answers
1k views
C++0x uniform initialization “oddity”
Like many, I am pretty excited about C++0x. I try to learn and use the new features in new projects so I can write the best, most easy-to-maintain code possible.
Needless to say, I love the idea ...
4
votes
2answers
195 views
Uniform initializer used in default argument to const reference
Is this legal c++0x syntax?
class A
{
public:
void some_function( const std::set<std::string> &options = {} );
// note that this is legal, which binds the const reference to a ...
16
votes
1answer
652 views
Uniform initialization of references
I am currently trying to understand the new uniform initialization of C++0x. Unfortunately, I stumpled over using uniform initialization of references. Example:
int main() {
int a;
int ...
0
votes
1answer
923 views
std::make_pair vs C++0x uniform initializer
Is there a drawback to using the latter? Is std::make_pair more versatile/compatible or are they truly interchangeable?
Thanks!


