mirror of
https://github.com/facebook/rocksdb.git
synced 2026-07-07 14:47:40 +08:00
make format
This commit is contained in:
+4
-1
@@ -17,9 +17,11 @@
|
||||
#endif
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <cerrno>
|
||||
#include <cstddef>
|
||||
#include <vector>
|
||||
|
||||
#include "memory/allocator.h"
|
||||
#include "util/mutexlock.h"
|
||||
|
||||
@@ -82,7 +84,8 @@ class Arena : public Allocator {
|
||||
}
|
||||
|
||||
private:
|
||||
char inline_block_[kInlineSize] __attribute__((__aligned__(alignof(max_align_t))));
|
||||
char inline_block_[kInlineSize]
|
||||
__attribute__((__aligned__(alignof(max_align_t))));
|
||||
// Number of bytes allocated in one block
|
||||
const size_t kBlockSize;
|
||||
// Array of new[] allocated memory blocks
|
||||
|
||||
Reference in New Issue
Block a user