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

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