[NFC][libc++] Reindent function
llvm-svn: 353180
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: b3b896811730dc527a461a18c5e73c0db5de4aea
diff --git a/include/filesystem b/include/filesystem
index 7fb2511..7a151d9 100644
--- a/include/filesystem
+++ b/include/filesystem
@@ -1364,13 +1364,11 @@
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