Fixed remaining cpplint warnings

This commit is contained in:
Benoit Blanchon
2014-11-06 14:08:53 +01:00
parent d8e595907b
commit ac9b776aa1
9 changed files with 207 additions and 204 deletions

View File

@ -9,10 +9,10 @@
class StreamPrintAdapter : public Print {
public:
StreamPrintAdapter(std::ostream& os) : _os(os) {}
explicit StreamPrintAdapter(std::ostream& os) : _os(os) {}
virtual size_t write(uint8_t c) {
_os << (char)c;
_os << static_cast<char>(c);
return 1;
}