[libcxxabi][test] Add missing return statement.

This causes a test failure when running with -Werror=return-type.

NFC.

llvm-svn: 271423
This commit is contained in:
Asiri Rathnayake 2016-06-01 19:13:53 +00:00
parent 73694bb92b
commit ece18f4c14
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class Base {
class Derived : public Base {};
std::string test_bad_typeid(Derived *p) {
typeid(*p).name();
return typeid(*p).name();
}
void my_terminate() { std::cout << "A" << std::endl; exit(0); }