diff options
| author | Shoaib Meenai <smeenai@fb.com> | 2017-09-15 06:19:31 +0000 |
|---|---|---|
| committer | Shoaib Meenai <smeenai@fb.com> | 2017-09-15 06:19:31 +0000 |
| commit | c3f5cc8e781357c194ae89474dfef0b6d816402e (patch) | |
| tree | 04faaf4d644e6bd89be8f449c7590a58ce8200ef /libcxx/include/typeinfo | |
| parent | e7b38cdc00e8824c37ce2b41f00d6394fef700a7 (diff) | |
| download | bcm5719-llvm-c3f5cc8e781357c194ae89474dfef0b6d816402e.tar.gz bcm5719-llvm-c3f5cc8e781357c194ae89474dfef0b6d816402e.zip | |
[libc++] Remove unnecessary struct tag
It causes warnings about mismatched tags, and it's not needed.
llvm-svn: 313345
Diffstat (limited to 'libcxx/include/typeinfo')
| -rw-r--r-- | libcxx/include/typeinfo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/typeinfo b/libcxx/include/typeinfo index 2e1db9b1119..7e8d3990ed9 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: |

