From 624ef456ddb2e88ae16790236a4e8c89b67428da Mon Sep 17 00:00:00 2001 From: jsteemann Date: Fri, 18 Sep 2015 22:03:47 +0200 Subject: [PATCH] fixed formatting. thanks @4tXJ7f for pointing me at `make format` --- include/rocksdb/write_batch.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/rocksdb/write_batch.h b/include/rocksdb/write_batch.h index d61ff8c0e..a097f2169 100644 --- a/include/rocksdb/write_batch.h +++ b/include/rocksdb/write_batch.h @@ -206,7 +206,8 @@ class WriteBatch : public WriteBatchBase { WriteBatch* GetWriteBatch() override { return this; } // Constructor with a serialized string object - explicit WriteBatch(const std::string& rep) : save_points_(nullptr), rep_(rep) {} + explicit WriteBatch(const std::string& rep) + : save_points_(nullptr), rep_(rep) {} private: friend class WriteBatchInternal;