From 77dc84c48a7a70c90a26c7f43e3f4c28ebe4f28c Mon Sep 17 00:00:00 2001 From: John Fletcher Date: Mon, 17 Mar 2014 14:11:45 +0000 Subject: [PATCH] remove tabs --- test/scope/more_let_tests.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/scope/more_let_tests.cpp b/test/scope/more_let_tests.cpp index 699dd60..cfc5b11 100644 --- a/test/scope/more_let_tests.cpp +++ b/test/scope/more_let_tests.cpp @@ -85,11 +85,11 @@ main() BOOST_TEST(x == 1); } - //++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - // Be very careful. Some of these cases give a silly answer - // with clang 3.4 with C++03 and work for C++11. - // gcc 4.8.2 seems O.K. both ways. Oh dear. - //++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + //++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + // Be very careful. Some of these cases give a silly answer + // with clang 3.4 with C++03 and work for C++11. + // gcc 4.8.2 seems O.K. both ways. Oh dear. + //++++++++++++++++++++++++++++++++++++++++++++++++++++++++ { int y = 0; int x = (let(_a = 1, _b = 2)[let(_b = _a)[ _a ]])(y);