mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-24 03:32:35 +08:00
[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:
@@ -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
|
||||
|
Reference in New Issue
Block a user