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/typeinfo.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/typeinfo.cpp')
-rw-r--r-- | libcxx/src/typeinfo.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/libcxx/src/typeinfo.cpp b/libcxx/src/typeinfo.cpp index 8606897e5e0..931855b3665 100644 --- a/libcxx/src/typeinfo.cpp +++ b/libcxx/src/typeinfo.cpp @@ -10,32 +10,30 @@ #include "typeinfo" -std::bad_cast::bad_cast() throw() -{ +std::bad_cast::bad_cast() throw() +{ } -std::bad_cast::~bad_cast() throw() -{ +std::bad_cast::~bad_cast() throw() +{ } -const char* +const char* std::bad_cast::what() const throw() { return "std::bad_cast"; } - -std::bad_typeid::bad_typeid() throw() -{ +std::bad_typeid::bad_typeid() throw() +{ } -std::bad_typeid::~bad_typeid() throw() +std::bad_typeid::~bad_typeid() throw() { } -const char* +const char* std::bad_typeid::what() const throw() { return "std::bad_typeid"; } - |