From 19e7862eb83da0f009f6bd5becd56753dcca12d6 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 1 Oct 2013 13:28:20 +0000 Subject: [PATCH] Remove non-printable chars that snuck in back in July; thanks to Yaron Keren for the catch git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@191756 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/tuple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tuple b/include/tuple index 68b975bf..5fa6ef36 100644 --- a/include/tuple +++ b/include/tuple @@ -748,7 +748,7 @@ struct __find_exactly_one_t_helper <_T1, _Idx, _Head, _Args...> { static constexpr size_t value = std::conditional< std::is_same<_T1, _Head>::value, - __find_exactly_one_t_checker<_T1, _Idx,   _Args...>, + __find_exactly_one_t_checker<_T1, _Idx, _Args...>, __find_exactly_one_t_helper <_T1, _Idx+1, _Args...> >::type::value; };