Skip to content

Commit

Permalink
WString: remove operator==(const __FlashStringHelper*) (#8569)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-v authored May 17, 2022
1 parent 1bb041b commit fbba25c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cores/esp8266/WString.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,18 +227,12 @@ class String {
bool operator ==(const char *cstr) const {
return equals(cstr);
}
bool operator ==(const __FlashStringHelper *rhs) const {
return equals(rhs);
}
bool operator !=(const String &rhs) const {
return !equals(rhs);
}
bool operator !=(const char *cstr) const {
return !equals(cstr);
}
bool operator !=(const __FlashStringHelper *rhs) const {
return !equals(rhs);
}
bool operator <(const String &rhs) const;
bool operator >(const String &rhs) const;
bool operator <=(const String &rhs) const;
Expand Down

0 comments on commit fbba25c

Please sign in to comment.