summaryrefslogtreecommitdiffstats
path: root/libcxx/include/stdexcept
diff options
context:
space:
mode:
authorLouis Dionne <ldionne@apple.com>2018-08-03 22:36:53 +0000
committerLouis Dionne <ldionne@apple.com>2018-08-03 22:36:53 +0000
commit7c3492b00d99c81d4a58a8015dbe313eabaea799 (patch)
treec19e56be99434c6fcea2d720144739d5c4f529c2 /libcxx/include/stdexcept
parentb7d621b7b666691e6b2143fc401f0c09a5bc06d1 (diff)
downloadbcm5719-llvm-7c3492b00d99c81d4a58a8015dbe313eabaea799.tar.gz
bcm5719-llvm-7c3492b00d99c81d4a58a8015dbe313eabaea799.zip
[NFC][libc++] Consistently use spaces to indent
rdar://problem/19988944 llvm-svn: 338933
Diffstat (limited to 'libcxx/include/stdexcept')
-rw-r--r--libcxx/include/stdexcept12
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/include/stdexcept b/libcxx/include/stdexcept
index 6533497e4ea..3ec79349aa9 100644
--- a/libcxx/include/stdexcept
+++ b/libcxx/include/stdexcept
@@ -192,7 +192,7 @@ void __throw_logic_error(const char*__msg)
throw logic_error(__msg);
#else
((void)__msg);
- _VSTD::abort();
+ _VSTD::abort();
#endif
}
@@ -203,7 +203,7 @@ void __throw_domain_error(const char*__msg)
throw domain_error(__msg);
#else
((void)__msg);
- _VSTD::abort();
+ _VSTD::abort();
#endif
}
@@ -214,7 +214,7 @@ void __throw_invalid_argument(const char*__msg)
throw invalid_argument(__msg);
#else
((void)__msg);
- _VSTD::abort();
+ _VSTD::abort();
#endif
}
@@ -225,7 +225,7 @@ void __throw_length_error(const char*__msg)
throw length_error(__msg);
#else
((void)__msg);
- _VSTD::abort();
+ _VSTD::abort();
#endif
}
@@ -236,7 +236,7 @@ void __throw_out_of_range(const char*__msg)
throw out_of_range(__msg);
#else
((void)__msg);
- _VSTD::abort();
+ _VSTD::abort();
#endif
}
@@ -247,7 +247,7 @@ void __throw_range_error(const char*__msg)
throw range_error(__msg);
#else
((void)__msg);
- _VSTD::abort();
+ _VSTD::abort();
#endif
}
OpenPOWER on IntegriCloud