Suppress 1 cppcheck warning arrayIndexOutOfBounds

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

Change-Id: I365befacf7d10bcbf0a159cfdcabd3eb1644d02b
This commit is contained in:
Julien Nabet
2015-01-19 22:45:02 +01:00
parent 4500afcc1b
commit ac8fdc7dd4

View File

@@ -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;
}
}
/*