mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
Remove unused ctor and constant
This commit is contained in:
parent
addfd071bb
commit
4c695ebbc9
|
@ -172,8 +172,6 @@ enum class AllocationAlgorithm : int
|
||||||
|
|
||||||
struct RegionInfo
|
struct RegionInfo
|
||||||
{
|
{
|
||||||
static constexpr uint64_t DefaultRcSegmentSize = 10000000;
|
|
||||||
|
|
||||||
RegionInfo(const char* path, int flags, uint64_t userFlags, uint64_t size, uint64_t rcSegmentSize, const VoidAlloc& alloc)
|
RegionInfo(const char* path, int flags, uint64_t userFlags, uint64_t size, uint64_t rcSegmentSize, const VoidAlloc& alloc)
|
||||||
: fPath(path, alloc)
|
: fPath(path, alloc)
|
||||||
, fCreationFlags(flags)
|
, fCreationFlags(flags)
|
||||||
|
@ -183,14 +181,6 @@ struct RegionInfo
|
||||||
, fDestroyed(false)
|
, fDestroyed(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
RegionInfo(const VoidAlloc& alloc)
|
|
||||||
: RegionInfo("", 0, 0, 0, DefaultRcSegmentSize, alloc)
|
|
||||||
{}
|
|
||||||
|
|
||||||
RegionInfo(const char* path, int flags, uint64_t userFlags, uint64_t size, const VoidAlloc& alloc)
|
|
||||||
: RegionInfo(path, flags, userFlags, size, DefaultRcSegmentSize, alloc)
|
|
||||||
{}
|
|
||||||
|
|
||||||
Str fPath;
|
Str fPath;
|
||||||
int fCreationFlags;
|
int fCreationFlags;
|
||||||
uint64_t fUserFlags;
|
uint64_t fUserFlags;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user