Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9c47a1c
wip
mcspr Dec 19, 2020
d1d584e
huh, turns out String = 'c' did some weird stuff
mcspr Dec 19, 2020
c9a55f7
style
mcspr Dec 22, 2020
7a9cf16
Merge remote-tracking branch 'origin/master' into string/no-sum-helper
mcspr Dec 22, 2020
14e1e7c
allow "blah" + String, 'c' + String and F("...") + String
mcspr Dec 22, 2020
559a5db
shuffle things into .cpp
mcspr Dec 22, 2020
6dbcfa9
trying to fix arduinojson
mcspr Dec 22, 2020
4683923
fix accidental realloc, add test for operator+
mcspr Dec 23, 2020
6a3fc86
fixup! fix accidental realloc, add test for operator+
mcspr Dec 23, 2020
52c8b37
don't need another branch
mcspr Dec 23, 2020
5c35ae3
template +=(String / char* / numbers) and +(String, numbers / char*)
mcspr Dec 23, 2020
c908321
Merge remote-tracking branch 'origin/master' into string/no-sum-helper
mcspr Dec 23, 2020
425b366
Merge remote-tracking branch 'origin/master' into string/no-sum-helper
mcspr Jan 5, 2021
e553e26
nul after moving (isnt mem always zeroed tho?)
mcspr Jan 6, 2021
73a28d0
check if lhs cant keep before switching to rhs
mcspr Jan 6, 2021
fa00fba
fix String used to store struct data
mcspr Jan 6, 2021
8af5a00
style once more
mcspr Jan 6, 2021
c57ae69
typo
mcspr Jan 6, 2021
ed60441
Merge branch 'master' into string/no-sum-helper
earlephilhower Jan 8, 2021
4b70ead
Merge branch 'master' into string/no-sum-helper
earlephilhower Jan 9, 2021
b4ec910
Merge remote-tracking branch 'origin/master' into string/no-sum-helper
mcspr Jan 27, 2021
95ebd47
Merge remote-tracking branch 'origin/master' into string/no-sum-helper
mcspr Mar 21, 2021
3299833
recover 444002180bca8e36b3014eaf5ecf5e690837b440
mcspr Mar 21, 2021
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/master' into string/no-sum-helper
  • Loading branch information
mcspr committed Mar 21, 2021
commit 95ebd476ff5881cb01bac2d552be4c472b6a96ed
8 changes: 0 additions & 8 deletions cores/esp8266/StreamString.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ class StreamString: public String, public S2Stream
StreamString(const String& string): String(string), S2Stream(this) { }
StreamString(const __FlashStringHelper *str): String(str), S2Stream(this) { }
StreamString(String&& string): String(string), S2Stream(this) { }
StreamString(StringSumHelper&& sum): String(sum), S2Stream(this) { }

explicit StreamString(char c): String(c), S2Stream(this) { }
explicit StreamString(unsigned char c, unsigned char base = 10): String(c, base), S2Stream(this) { }
Expand Down Expand Up @@ -281,13 +280,6 @@ class StreamString: public String, public S2Stream
resetpp();
return *this;
}

StreamString& operator= (StringSumHelper&& rval)
{
String::operator=(rval);
resetpp();
return *this;
}
};

#endif // __STREAMSTRING_H
6 changes: 0 additions & 6 deletions cores/esp8266/WString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
#include "WString.h"
#include "stdlib_noniso.h"

#define OOM_STRING_BORDER_DISPLAY 10
#define OOM_STRING_THRESHOLD_REALLOC_WARN 128

#define __STRHELPER(x) #x
#define STR(x) __STRHELPER(x) // stringifier

/*********************************************/
/* Constructors */
/*********************************************/
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.