Configure clang-tidy job on CI (#6261)
This commit is contained in:
committed by
GitHub
parent
79d4363d59
commit
59953172e8
@@ -22,7 +22,7 @@ namespace datafacade
|
||||
/**
|
||||
* This allocator uses file backed mmap memory block as the data location.
|
||||
*/
|
||||
class MMapMemoryAllocator : public ContiguousBlockAllocator
|
||||
class MMapMemoryAllocator final : public ContiguousBlockAllocator
|
||||
{
|
||||
public:
|
||||
explicit MMapMemoryAllocator(const storage::StorageConfig &config);
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace datafacade
|
||||
* This class holds a unique_ptr to the memory block, so it
|
||||
* is auto-freed upon destruction.
|
||||
*/
|
||||
class ProcessMemoryAllocator : public ContiguousBlockAllocator
|
||||
class ProcessMemoryAllocator final : public ContiguousBlockAllocator
|
||||
{
|
||||
public:
|
||||
explicit ProcessMemoryAllocator(const storage::StorageConfig &config);
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace datafacade
|
||||
* Many SharedMemoryDataFacade objects can be created that point to the same shared
|
||||
* memory block.
|
||||
*/
|
||||
class SharedMemoryAllocator : public ContiguousBlockAllocator
|
||||
class SharedMemoryAllocator final : public ContiguousBlockAllocator
|
||||
{
|
||||
public:
|
||||
explicit SharedMemoryAllocator(
|
||||
|
||||
Reference in New Issue
Block a user