Fix test error on non-c++11 env.

Signed-off-by: Kohei Takahashi <flast@flast.jp>
This commit is contained in:
Kohei Takahashi
2014-10-08 23:57:55 +09:00
parent 790810757a
commit b8c65b976c

View File

@ -1,3 +1,8 @@
#include <boost/config.hpp>
#if !defined(BOOST_NO_CXX11_HDR_TUPLE) && \
!defined(BOOST_NO_CXX11_SMART_PTR)
#include <memory>
#include <tuple>
#include <boost/any.hpp>
@ -54,3 +59,12 @@ int main()
return 0;
}
#else
int main()
{
return 0;
}
#endif