From c3f5cc8e781357c194ae89474dfef0b6d816402e Mon Sep 17 00:00:00 2001 From: Shoaib Meenai Date: Fri, 15 Sep 2017 06:19:31 +0000 Subject: [PATCH] [libc++] Remove unnecessary struct tag It causes warnings about mismatched tags, and it's not needed. llvm-svn: 313345 --- libcxx/include/typeinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/typeinfo b/libcxx/include/typeinfo index 2e1db9b11192..7e8d3990ed98 100644 --- a/libcxx/include/typeinfo +++ b/libcxx/include/typeinfo @@ -97,7 +97,7 @@ class _LIBCPP_EXCEPTION_ABI type_info const char __decorated_name[1]; } __data; - int __compare(const struct type_info &__rhs) const _NOEXCEPT; + int __compare(const type_info &__rhs) const _NOEXCEPT; #endif // _LIBCPP_ABI_MICROSOFT protected: