[NFC][libc++] Reindent function
authorLouis Dionne <ldionne@apple.com>
Tue, 5 Feb 2019 15:46:52 +0000 (15:46 +0000)
committerLouis Dionne <ldionne@apple.com>
Tue, 5 Feb 2019 15:46:52 +0000 (15:46 +0000)
llvm-svn: 353180

libcxx/include/filesystem

index 7fb2511..7a151d9 100644 (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