forked from OSchip/llvm-project
[libc++] Remove unnecessary struct tag
It causes warnings about mismatched tags, and it's not needed. llvm-svn: 313345
This commit is contained in:
parent
e7b38cdc00
commit
c3f5cc8e78
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue