Fix coverity warning in RangeTable
This commit is contained in:
parent
3b2893944c
commit
f67241a3cb
@ -45,7 +45,7 @@ public:
|
|||||||
friend std::ostream& operator<< <>(std::ostream &out, const RangeTable &table);
|
friend std::ostream& operator<< <>(std::ostream &out, const RangeTable &table);
|
||||||
friend std::istream& operator>> <>(std::istream &in, RangeTable &table);
|
friend std::istream& operator>> <>(std::istream &in, RangeTable &table);
|
||||||
|
|
||||||
RangeTable() {}
|
RangeTable() : sum_lengths(0) {}
|
||||||
|
|
||||||
// for loading from shared memory
|
// for loading from shared memory
|
||||||
explicit RangeTable(OffsetContainerT& external_offsets, BlockContainerT& external_blocks, const unsigned sum_lengths)
|
explicit RangeTable(OffsetContainerT& external_offsets, BlockContainerT& external_blocks, const unsigned sum_lengths)
|
||||||
|
Loading…
Reference in New Issue
Block a user