#include <iostream>
#include <tuple>
#include <tuple>
//#include <tuple_comparison.hpp>
//#include <tuple_io.hpp>
using namespace std;
void main()
{
tuple<int,char,float> t(2,'a',0.9);
//std::cout<<t<<endl;
}
tuple<int,char,float> t(2,'a',0.9) is ok.
but if I add the header file tuple_comparison.hpp tuple_io.hpp,
it will throw the error"No such file or directory".
In my properies of the solution,I have added the "boost_1_45_0\boost"
I don't know ther how to resove it.
plz give your hands.thanks