|
Alternatively, use 0x's initaliser lists for var args and return vectors.
template<typename type> std::vector<type> some_function(std::vector<type> args); some_function({1,2,3,...});
Speaking of which, ENIGMA's var should support operator= with initialiser lists.
|