[NFC][libc++] Reindent function

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@353180 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Louis Dionne 2019-02-05 15:46:52 +00:00
parent c64eb1f8cf
commit 72ea6f36d1

View File

@ -1364,13 +1364,11 @@ private:
template <class... _Args>
_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