1
0
Fork 0

Explicitly initialized SkiplistIteratorInterval

This commit is contained in:
Michael Hackstein 2015-09-01 10:51:33 +02:00
parent 02b3a0614e
commit 2e3321a112
1 changed files with 4 additions and 0 deletions

View File

@ -77,6 +77,10 @@ namespace triagens {
struct SkiplistIteratorInterval {
Node* _leftEndPoint;
Node* _rightEndPoint;
SkiplistIteratorInterval ()
: _leftEndPoint(nullptr),
_rightEndPoint(nullptr) { }
};
// -----------------------------------------------------------------------------