Fix CID 1255187, 1255202, 1255213, 1255260, 1255308

Change-Id: If2357dc8e6147b2f1983f646e4f3ba70195e59ff
Reviewed-on: https://review.haiku-os.org/c/85
Reviewed-by: waddlesplash <[email protected]>
Reviewed-by: Stephan Aßmus <[email protected]>
This commit is contained in:
Puck Meerburg
2019-02-11 21:37:40 +00:00
committed by waddlesplash
parent 601c0fcae2
commit 2f1a930a4a
+4 -2
View File
@@ -23,14 +23,16 @@ public:
HashMapElement()
:
fKey(),
fValue()
fValue(),
fNext(NULL)
{
}
HashMapElement(const Key& key, const Value& value)
:
fKey(key),
fValue(value)
fValue(value),
fNext(NULL)
{
}