Hi everyone,
I can't get the new C++11 library datatype std::tuple to work.
Here is the code which won't compile.
#include <tuple>
int main (int argc, const char * argv[]) {
std::tuple<int, int> a;
return 0;
}
Other C++11 features work fine. Is <tuple> still under construction?
Thanks, Stephan