Boost::tuple: fix compiler-specifc test.

pull/682/head
Kim Kulling 2015-11-01 12:20:35 +01:00
parent eadc6116c0
commit 6be8df5fde
1 changed files with 3 additions and 3 deletions

View File

@ -38,10 +38,10 @@ TEST(NoBoostTest, Tuple) {
boost::tuple<int, float, double, bool, another> second; boost::tuple<int, float, double, bool, another> second;
bool b = second.get<3>(); bool b = second.get<3>();
EXPECT_FALSE(b);
// check empty tuple, ignore compile warning // check empty tuple
boost::tuple<> third; boost::tuple<> third;
third;
// FIXME: Explicit conversion not really required yet // FIXME: Explicit conversion not really required yet
boost::tuple<float,float,float> last = boost::tuple<float,float,float> last =