summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorShoaib Meenai <smeenai@fb.com>2017-09-15 06:19:31 +0000
committerShoaib Meenai <smeenai@fb.com>2017-09-15 06:19:31 +0000
commitca79c159d8bfbe190a6cbfce74eb2d050697d8b9 (patch)
treec9f1d7e96558a540852130fa034afdf71e8ffbb7 /include
parent2656897657f2613bc498123cfa85b2ec68eb5f54 (diff)
[libc++] Remove unnecessary struct tag
It causes warnings about mismatched tags, and it's not needed. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@313345 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/typeinfo2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/typeinfo b/include/typeinfo
index 2e1db9b11..7e8d3990e 100644
--- a/include/typeinfo
+++ b/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: