Przeglądaj źródła

Add support for if (String) syntax

teensy4-core
PaulStoffregen 8 lat temu
rodzic
commit
253da1599d
1 zmienionych plików z 7 dodań i 0 usunięć
  1. +7
    -0
      teensy3/WString.h

+ 7
- 0
teensy3/WString.h Wyświetl plik

@@ -196,6 +196,13 @@ protected:
void init(void);
unsigned char changeBuffer(unsigned int maxStrLen);
String & append(const char *cstr, unsigned int length);
private:
// allow for "if (s)" without the complications of an operator bool().
// for more information http://www.artima.com/cppsource/safebool.html
typedef void (String::*StringIfHelperType)() const;
void StringIfHelper() const {}
public:
operator StringIfHelperType() const { return buffer ? &String::StringIfHelper : 0; }
};

class StringSumHelper : public String

Ładowanie…
Anuluj
Zapisz