Switched to Google coding style to match cpplint expectations

This commit is contained in:
Benoit Blanchon
2014-10-23 23:13:13 +02:00
parent 5c8283b3e4
commit b43da1e421
47 changed files with 262 additions and 308 deletions

View File

@@ -12,7 +12,7 @@
// This class reproduces Arduino's Print
class Print {
public:
public:
virtual size_t write(uint8_t) = 0;
size_t print(const char[]);

View File

@@ -12,7 +12,7 @@
class Print;
class Printable {
public:
public:
virtual size_t printTo(Print &p) const = 0;
};