[libc++] Remove unnecessary struct tag

It causes warnings about mismatched tags, and it's not needed.

llvm-svn: 313345
This commit is contained in:
Shoaib Meenai 2017-09-15 06:19:31 +00:00
parent e7b38cdc00
commit c3f5cc8e78
1 changed files with 1 additions and 1 deletions

View File

@ -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: