File tree 1 file changed +0
-16
lines changed
lldb/include/lldb/Utility 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -78,22 +78,6 @@ class ConstString {
78
78
// / from \a cstr.
79
79
explicit ConstString (const char *cstr, size_t max_cstr_len);
80
80
81
- // / C string equality binary predicate function object for ConstString
82
- // / objects.
83
- struct StringIsEqual {
84
- // / C equality test.
85
- // /
86
- // / Two C strings are equal when they are contained in ConstString objects
87
- // / when their pointer values are equal to each other.
88
- // /
89
- // / \return
90
- // / Returns \b true if the C string in \a lhs is equal to
91
- // / the C string value in \a rhs, \b false otherwise.
92
- bool operator ()(const char *lhs, const char *rhs) const {
93
- return lhs == rhs;
94
- }
95
- };
96
-
97
81
// / Convert to bool operator.
98
82
// /
99
83
// / This allows code to check a ConstString object to see if it contains a
You can’t perform that action at this time.
0 commit comments