From: Louis Dionne Date: Tue, 5 Feb 2019 15:46:52 +0000 (+0000) Subject: [NFC][libc++] Reindent function X-Git-Tag: llvmorg-10-init~12768 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3b896811730dc527a461a18c5e73c0db5de4aea;p=platform%2Fupstream%2Fllvm.git [NFC][libc++] Reindent function llvm-svn: 353180 --- diff --git a/libcxx/include/filesystem b/libcxx/include/filesystem index 7fb2511..7a151d9 100644 --- a/libcxx/include/filesystem +++ b/libcxx/include/filesystem @@ -1364,13 +1364,11 @@ private: template _LIBCPP_NORETURN inline _LIBCPP_INLINE_VISIBILITY #ifndef _LIBCPP_NO_EXCEPTIONS - void - __throw_filesystem_error(_Args&&... __args) { +void __throw_filesystem_error(_Args&&... __args) { throw filesystem_error(std::forward<_Args>(__args)...); } #else - void - __throw_filesystem_error(_Args&&...) { +void __throw_filesystem_error(_Args&&...) { _VSTD::abort(); } #endif