mirror of https://gitee.com/bigwinds/arangodb
Explicitly initialized SkiplistIteratorInterval
This commit is contained in:
parent
02b3a0614e
commit
2e3321a112
|
@ -77,6 +77,10 @@ namespace triagens {
|
|||
struct SkiplistIteratorInterval {
|
||||
Node* _leftEndPoint;
|
||||
Node* _rightEndPoint;
|
||||
|
||||
SkiplistIteratorInterval ()
|
||||
: _leftEndPoint(nullptr),
|
||||
_rightEndPoint(nullptr) { }
|
||||
};
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue