We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3e98e commit 4964eacCopy full SHA for 4964eac
lldb/include/lldb/Utility/NonNullSharedPtr.h
@@ -73,18 +73,6 @@ template <typename T> class NonNullSharedPtr : private std::shared_ptr<T> {
73
74
} // namespace lldb_private
75
76
-template <typename T>
77
-bool operator==(const lldb_private::NonNullSharedPtr<T> &lhs,
78
- const lldb_private::NonNullSharedPtr<T> &rhs) {
79
- return lhs.get() == rhs.get();
80
-}
81
-
82
83
-bool operator!=(const lldb_private::NonNullSharedPtr<T> &lhs,
84
85
- return !(lhs == rhs);
86
87
88
/// Specialized swap function for NonNullSharedPtr to enable argument-dependent
89
/// lookup (ADL) and efficient swapping.
90
template <typename T>
0 commit comments