diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:03:27 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:03:27 +0000 |
commit | 940e211c87ceb6e43bf7a2bfd5df9783ad75ae6c (patch) | |
tree | 43c7c28a8644d312e1618bf0c2a7251f8fb9d2f6 /libcxx/src/system_error.cpp | |
parent | b3371f6f4909a1e2034c69011d0baa1a39b21d48 (diff) | |
download | bcm5719-llvm-940e211c87ceb6e43bf7a2bfd5df9783ad75ae6c.tar.gz bcm5719-llvm-940e211c87ceb6e43bf7a2bfd5df9783ad75ae6c.zip |
Fixing whitespace problems
llvm-svn: 111751
Diffstat (limited to 'libcxx/src/system_error.cpp')
-rw-r--r-- | libcxx/src/system_error.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/src/system_error.cpp b/libcxx/src/system_error.cpp index 1ca85cb2f8c..96881a4418f 100644 --- a/libcxx/src/system_error.cpp +++ b/libcxx/src/system_error.cpp @@ -67,7 +67,7 @@ __generic_error_category::message(int ev) const #ifdef ELAST if (ev > ELAST) return string("unspecified generic_category error"); -#endif +#endif // ELAST return __do_message::message(ev); } @@ -99,7 +99,7 @@ __system_error_category::message(int ev) const #ifdef ELAST if (ev > ELAST) return string("unspecified system_category error"); -#endif +#endif // ELAST return __do_message::message(ev); } @@ -109,7 +109,7 @@ __system_error_category::default_error_condition(int ev) const #ifdef ELAST if (ev > ELAST) return error_condition(ev, system_category()); -#endif +#endif // ELAST return error_condition(ev, generic_category()); } |