Google style guide

This commit is contained in:
Ian Gulliver
2019-05-18 12:11:20 -07:00
parent 2102147a2f
commit 858b291f46
5 changed files with 252 additions and 118 deletions

View File

@@ -5,13 +5,13 @@
namespace firebuf {
class StreamBuffer : public Buffer {
public:
StreamBuffer(int sock, size_t size);
public:
StreamBuffer(int sock, size_t size);
[[nodiscard]] bool Refill();
[[nodiscard]] bool Refill();
private:
int sock_;
private:
int sock_;
};
} // namespace firebuf
} // namespace firebuf