/ Published in: C++
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
boost::array<boost::tuple<string, int>, 2> boo = { ("position x", 0), ("position y", 0) }; boost::array<boost::tuple<string, int>, 2> foo = { boost::make_tuple("position x", 0), boost::make_tuple("position y", 0) };