From 324bb03bb94f67ae7f9092810e4e4f6bd8bf506e Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Sun, 22 Aug 2010 00:02:43 +0000 Subject: Fixing whitespace problems git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111750 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/exception | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/exception') diff --git a/include/exception b/include/exception index 772ada4ea..f02b10ff1 100644 --- a/include/exception +++ b/include/exception @@ -150,7 +150,7 @@ make_exception_ptr(_E __e) { return current_exception(); } -#endif +#endif // _LIBCPP_NO_EXCEPTIONS } // nested_exception @@ -178,17 +178,17 @@ struct __nested }; template -void +void #ifdef _LIBCPP_MOVE throw_with_nested /*[[noreturn]]*/ (_Tp&& __t, typename enable_if< is_class::type>::value && !is_base_of::type>::value >::type* = 0) -#else +#else // _LIBCPP_MOVE throw_with_nested (_Tp& __t, typename enable_if< is_class<_Tp>::value && !is_base_of::value >::type* = 0) -#endif +#endif // _LIBCPP_MOVE { #ifndef _LIBCPP_NO_EXCEPTIONS throw __nested::type>(_STD::forward<_Tp>(__t)); @@ -196,17 +196,17 @@ throw_with_nested (_Tp& __t, typename enable_if< } template -void +void #ifdef _LIBCPP_MOVE throw_with_nested /*[[noreturn]]*/ (_Tp&& __t, typename enable_if< !is_class::type>::value || is_base_of::type>::value >::type* = 0) -#else +#else // _LIBCPP_MOVE throw_with_nested (_Tp& __t, typename enable_if< !is_class<_Tp>::value || is_base_of::value >::type* = 0) -#endif +#endif // _LIBCPP_MOVE { #ifndef _LIBCPP_NO_EXCEPTIONS throw _STD::forward<_Tp>(__t); -- cgit v1.2.3