Remove non-printable chars that snuck in back in July; thanks to Yaron Keren for the catch

llvm-svn: 191756
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: ad864049d68d44445f2eae5d186179299a86d217
diff --git a/include/tuple b/include/tuple
index 68b975b..5fa6ef3 100644
--- a/include/tuple
+++ b/include/tuple
@@ -748,7 +748,7 @@
     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;
     };