Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
412 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 ...
13
votes
1answer
315 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 ...
10
votes
1answer
173 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 ...
4
votes
1answer
74 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 ...
4
votes
3answers
221 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 ...
4
votes
2answers
123 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 ...
3
votes
2answers
108 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 ...
2
votes
1answer
52 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 ...
0
votes
1answer
396 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!