[cfe-commits] [libcxx] r113089 - in /libcxx/trunk: include/__hash_table include/locale include/map src/future.cpp test/thread/futures/futures.future_error/what.pass.cpp

Howard Hinnant hhinnant at apple.com
Sat Sep 4 16:46:49 PDT 2010


Author: hhinnant
Date: Sat Sep  4 18:46:48 2010
New Revision: 113089

URL: http://llvm.org/viewvc/llvm-project?rev=113089&view=rev
Log:
Fix whitespace

Modified:
    libcxx/trunk/include/__hash_table
    libcxx/trunk/include/locale
    libcxx/trunk/include/map
    libcxx/trunk/src/future.cpp
    libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp

Modified: libcxx/trunk/include/__hash_table
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__hash_table?rev=113089&r1=113088&r2=113089&view=diff
==============================================================================
--- libcxx/trunk/include/__hash_table (original)
+++ libcxx/trunk/include/__hash_table Sat Sep  4 18:46:48 2010
@@ -619,7 +619,7 @@
 #ifndef _LIBCPP_HAS_NO_VARIADICS
     template <class ..._Args>
         __node_holder __construct_node(_Args&& ...__args);
-#endif
+#endif  // _LIBCPP_HAS_NO_VARIADICS
     __node_holder __construct_node(value_type&& __v, size_t __hash);
 #else  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
     __node_holder __construct_node(const value_type& __v);

Modified: libcxx/trunk/include/locale
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/locale?rev=113089&r1=113088&r2=113089&view=diff
==============================================================================
--- libcxx/trunk/include/locale (original)
+++ libcxx/trunk/include/locale Sat Sep  4 18:46:48 2010
@@ -3628,7 +3628,7 @@
     __wc.__cvtptr_ = nullptr;
 }
 
-#endif  // _LIBCPP_HAS_NO_VARIADICS
+#endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
 
 template<class _Codecvt, class _Elem, class _Wide_alloc, class _Byte_alloc>
 wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>::~wstring_convert()

Modified: libcxx/trunk/include/map
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/map?rev=113089&r1=113088&r2=113089&view=diff
==============================================================================
--- libcxx/trunk/include/map (original)
+++ libcxx/trunk/include/map Sat Sep  4 18:46:48 2010
@@ -463,7 +463,7 @@
         {
             __x.__value_constructed = false;
         }
-#endif  // _LIBCPP_HAS_NO_VARIADICS
+#endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
 
     void operator()(pointer __p)
     {
@@ -705,7 +705,7 @@
             return *this;
         }
 
-#endif  // _LIBCPP_HAS_NO_VARIADICS
+#endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
 
     explicit map(const allocator_type& __a)
         : __tree_(__a)
@@ -1378,7 +1378,7 @@
             __tree_.__assign_multi(__il.begin(), __il.end());
             return *this;
         }
-#endif  // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
+#endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
 
     explicit multimap(const allocator_type& __a)
         : __tree_(__a)

Modified: libcxx/trunk/src/future.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/future.cpp?rev=113089&r1=113088&r2=113089&view=diff
==============================================================================
--- libcxx/trunk/src/future.cpp (original)
+++ libcxx/trunk/src/future.cpp Sat Sep  4 18:46:48 2010
@@ -46,7 +46,6 @@
     return string("unspecified future_errc value\n");
 }
 
-
 const error_category&
 future_category()
 {

Modified: libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp?rev=113089&r1=113088&r2=113089&view=diff
==============================================================================
--- libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp (original)
+++ libcxx/trunk/test/thread/futures/futures.future_error/what.pass.cpp Sat Sep  4 18:46:48 2010
@@ -11,7 +11,7 @@
 
 // class future_error
 
-// const char*	what() const throw();
+// const char* what() const throw();
 
 #include <future>
 #include <cstring>





More information about the cfe-commits mailing list