Fix whitespace

llvm-svn: 113089
This commit is contained in:
Howard Hinnant 2010-09-04 23:46:48 +00:00
parent 1c2cc0adba
commit 959cf8aede
5 changed files with 6 additions and 7 deletions

View File

@ -619,7 +619,7 @@ private:
#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);

View File

@ -3628,7 +3628,7 @@ wstring_convert<_Codecvt, _Elem, _Wide_alloc, _Byte_alloc>::
__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()

View File

@ -463,7 +463,7 @@ public:
{
__x.__value_constructed = false;
}
#endif // _LIBCPP_HAS_NO_VARIADICS
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
void operator()(pointer __p)
{
@ -705,7 +705,7 @@ public:
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 @@ public:
__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)

View File

@ -46,7 +46,6 @@ __future_error_category::message(int ev) const
return string("unspecified future_errc value\n");
}
const error_category&
future_category()
{

View File

@ -11,7 +11,7 @@
// class future_error
// const char* what() const throw();
// const char* what() const throw();
#include <future>
#include <cstring>