Added test of an empty string

This commit is contained in:
Benoit Blanchon
2014-08-25 09:17:32 +02:00
parent f29904e217
commit 1f25d4434e
5 changed files with 49 additions and 3 deletions

View File

@ -7,5 +7,5 @@
size_t IndentedPrintDecorator::write(uint8_t c)
{
return print.write(c);
return sink.write(c);
}

View File

@ -13,7 +13,7 @@ class IndentedPrintDecorator : public Print
public:
IndentedPrintDecorator(Print& p)
: currentLevel(0), print(p)
: currentLevel(0), sink(p)
{
}
@ -21,6 +21,6 @@ public:
private:
int currentLevel;
Print& print;
Print& sink;
};