Skip to content

Commit b3b8968

Browse files
committed
[NFC][libc++] Reindent function
llvm-svn: 353180
1 parent b696b77 commit b3b8968

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

libcxx/include/filesystem

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,13 +1364,11 @@ private:
13641364
template <class... _Args>
13651365
_LIBCPP_NORETURN inline _LIBCPP_INLINE_VISIBILITY
13661366
#ifndef _LIBCPP_NO_EXCEPTIONS
1367-
void
1368-
__throw_filesystem_error(_Args&&... __args) {
1367+
void __throw_filesystem_error(_Args&&... __args) {
13691368
throw filesystem_error(std::forward<_Args>(__args)...);
13701369
}
13711370
#else
1372-
void
1373-
__throw_filesystem_error(_Args&&...) {
1371+
void __throw_filesystem_error(_Args&&...) {
13741372
_VSTD::abort();
13751373
}
13761374
#endif

0 commit comments

Comments
 (0)