Tagged Questions
18
votes
2answers
469 views
C++ vector of arrays
Why does this work:
std::pair<int, int> p = {1,2};
std::vector<std::pair<int, int>> vp = { {1,2}, {3,4} };
But this doesn't?
std::array<int, 2> a = {1,2}; // still ok
...
9
votes
4answers
583 views
How do I initialize a member array with an initializer_list?
I'm getting up to speed with C++0x, and testing things out with g++ 4.6
I just tried the following code, thinking it would work, but it doesn't compile. I get the error:
incompatible types in ...
7
votes
1answer
2k views
initializer_list not working in VC10
hi
i wrote this program in VC++ 2010:
class class1
{
public:
class1 (initializer_list<int> a){};
int foo;
float Bar;
};
void main()
{
class1 c = {2,3};
getchar();
}
but i get this errors ...
6
votes
1answer
147 views
Converting Initializer list
I need to convert a class written in C++ 0x to one which compiles in Visual studio 2008.
The code uses std::initializer_list.
Following is the code
template <typename data_type>
class ...
6
votes
2answers
227 views
Expanding parameter pack containing initializer_list to constructor
I intend to use shared_ptr quite a bit in an upcoming project, so (not being aware of std::make_shared) I wanted to write a variadic template function spnew<T>(...) as a shared_ptr-returning ...
5
votes
2answers
246 views
Why is the size not a template argument of std::initializer_list?
std::initializer_list is constructed by the compiler from a brace-enclosed init list and the size of this list must be a compile time constant.
So why did the committee decide to omit the size from ...
5
votes
1answer
191 views
Syntax in Assigning to Map of structs
struct Structure {
// Structure(const char* n, int v, bool a) : name(n), value(v), awesome(a) {}
const char* name;
int value;
bool awesome;
};
std::map<const char*, Structure> map;
...
5
votes
1answer
191 views
How to initialize a container of noncopyable with initializer list?
I use gcc 4.6.1 to compile this code
int main()
{
std::vector<std::unique_ptr<int>> vec({
std::unique_ptr<int>(new int(0)),
...
5
votes
1answer
368 views
C++0x nested initializer lists
I would like to use C++0x new initializer list feature to initialize a std::vector with a compile time defined number of items for a new API I'm currently working on. Something like this:
...
5
votes
1answer
300 views
c++ initializer lists and variadic templates
I wanted to create an array:
template < typename T, typename ... A > struct a {
T x [1 + sizeof... (A)];
a () = default;
a (T && t, A && ... y) : x { t, y... } {}
};
int ...
5
votes
1answer
533 views
What would a std::map extended initializer list look like?
If it even exists, what would a std::map extended initializer list look like?
I've tried some combinations of... well, everything I could think of with GCC 4.4, but found nothing that compiled.
5
votes
2answers
416 views
C++0x, Compiler hooks and hard coded languages features
I'm a little curious about some of the new features of C++0x. In particular range-based for loops and initializer lists. Both features require a user-defined class in order to function correctly.
I ...
5
votes
2answers
3k views
C++0x initializer list example
I would like to see how this example of existing code would be able to take advantage of the C++0x initializer list feature.
Example0:
#include <vector>
#include <string>
struct Ask {
...
0
votes
1answer
95 views
Closure deleter in initializer list (C++0x) and compiler warning
I get a warning C4355: 'this' : used in base member initializer list from Visual C++ 2010:
I have a class holding a handle, and I want to automatically close the handle even if the ctor for the class ...