I want to boost::assign a list to an empty value. Something like:

using namespace boost::assign;
std::list<int> myList = list_of<int>();

The reason that I want to do that is that I have a map of lists that I want to initialise and one of the lists in the map is empty. So I actually want to:

std::map<int, std::list<int> > myMap = 
    (map_list_of(0, list_of<int>())
                (1, list_of<int>(1)(2))
                (3, list_of<int>(99));
link|improve this question

78% accept rate
What about using std::list<int>() instead of list_of<int>()? – tibur Dec 9 '11 at 15:19
Thanks tibur, I hadn't thought of that. – Ant Dec 9 '11 at 16:37
feedback

1 Answer

up vote 1 down vote accepted

Use std::list<int>() instead of list_of<int>():

std::map<int, std::list<int> > myMap = 
    (map_list_of(0, std::list<int>())
                (1, list_of<int>(1)(2))
                (3, list_of<int>(99));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.