Skip to content

Commit

Permalink
Merge branch 'master' into sizes_stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
jjsuwa-sys3175 authored May 17, 2022
2 parents 49a209d + fbba25c commit 3c12311
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 3c12311

Please sign in to comment.