Skip to content

Commit

Permalink
WString: remove operator==(const __FlashStringHelper*) (esp8266#8569)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-v authored and hasenradball committed Nov 18, 2024
1 parent 61c42a5 commit 5da4265
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 5da4265

Please sign in to comment.