From b3348a6706dd3b3306e074fbcef6a7ce673e5db6 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 20 Aug 2013 15:15:47 +0200 Subject: Removed unused flags from String (free 1 byte of SRAM) --- cores/robot/WString.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cores/robot/WString.h') diff --git a/cores/robot/WString.h b/cores/robot/WString.h index 0404f76..f801f63 100644 --- a/cores/robot/WString.h +++ b/cores/robot/WString.h @@ -113,7 +113,7 @@ public: String & operator += (const String &rhs) {concat(rhs); return (*this);} String & operator += (const char *cstr) {concat(cstr); return (*this);} String & operator += (char c) {concat(c); return (*this);} - String & operator += (unsigned char num) {concat(num); return (*this);} + String & operator += (unsigned char num) {concat(num); return (*this);} String & operator += (int num) {concat(num); return (*this);} String & operator += (unsigned int num) {concat(num); return (*this);} String & operator += (long num) {concat(num); return (*this);} @@ -191,7 +191,6 @@ protected: char *buffer; // the actual char array unsigned int capacity; // the array length minus one (for the '\0') unsigned int len; // the String length (not counting the '\0') - unsigned char flags; // unused, for future features protected: void init(void); void invalidate(void); -- cgit v1.2.3-18-g5258