Skip to content

Commit

Permalink
fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Apr 23, 2016
1 parent 253c9f0 commit 2ba5d35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cpp/src/arrow/ipc/memory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ Status MemoryMappedSource::Write(int64_t position, const uint8_t* data, int64_t
return Status::OK();
}

MockMemorySource::MockMemorySource(int64_t size) : size_(size), extent_bytes_written_(0) {}
MockMemorySource::MockMemorySource(int64_t size)
: size_(size), extent_bytes_written_(0) {}

Status MockMemorySource::Close() {
return Status::OK();
Expand Down
3 changes: 2 additions & 1 deletion cpp/src/arrow/ipc/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ class MockMemorySource : public MemorySource {

int64_t Size() const override;

// @return: the smallest number of bytes containing the modified region of the MockMemorySource
// @return: the smallest number of bytes containing the modified region of the
// MockMemorySource
int64_t GetExtentBytesWritten() const;

private:
Expand Down

0 comments on commit 2ba5d35

Please sign in to comment.