[libcxx-commits] [libcxx] r353180 - [NFC][libc++] Reindent function
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 5 07:46:53 PST 2019
Author: ldionne
Date: Tue Feb 5 07:46:52 2019
New Revision: 353180
URL: http://llvm.org/viewvc/llvm-project?rev=353180&view=rev
Log:
[NFC][libc++] Reindent function
Modified:
libcxx/trunk/include/filesystem
Modified: libcxx/trunk/include/filesystem
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/filesystem?rev=353180&r1=353179&r2=353180&view=diff
==============================================================================
--- libcxx/trunk/include/filesystem (original)
+++ libcxx/trunk/include/filesystem Tue Feb 5 07:46:52 2019
@@ -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
More information about the libcxx-commits
mailing list