Kaydet (Commit) ac8fdc7d authored tarafından Julien Nabet's avatar Julien Nabet

Suppress 1 cppcheck warning arrayIndexOutOfBounds

See http://nabble.documentfoundation.org/cppcheck-arrayIndexOutOfBounds-report-in-stortree-cxx-store-module-td4136432.html

Change-Id: I365befacf7d10bcbf0a159cfdcabd3eb1644d02b
üst 4500afcc
......@@ -49,7 +49,10 @@ OStoreBTreeNodeData::OStoreBTreeNodeData (sal_uInt16 nPageSize)
T const t;
for (sal_uInt16 i = 1; i < n; i++)
{
// cppcheck-suppress arrayIndexOutOfBounds
m_pData[i] = t;
}
}
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment