We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b696b77 commit b3b8968Copy full SHA for b3b8968
libcxx/include/filesystem
@@ -1364,13 +1364,11 @@ private:
1364
template <class... _Args>
1365
_LIBCPP_NORETURN inline _LIBCPP_INLINE_VISIBILITY
1366
#ifndef _LIBCPP_NO_EXCEPTIONS
1367
- void
1368
- __throw_filesystem_error(_Args&&... __args) {
+void __throw_filesystem_error(_Args&&... __args) {
1369
throw filesystem_error(std::forward<_Args>(__args)...);
1370
}
1371
#else
1372
1373
- __throw_filesystem_error(_Args&&...) {
+void __throw_filesystem_error(_Args&&...) {
1374
_VSTD::abort();
1375
1376
#endif
0 commit comments