Kaydet (Commit) a7d21497 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

warning C4189: : local variable is initialized but not referenced

Change-Id: I650fab8227fd8b6aeb4fd4d420cb820aefd80271
üst 4891de14
......@@ -297,8 +297,7 @@ storeError OStoreBTreeNodeObject::remove (
void OStoreBTreeRootObject::testInvariant (char const * message)
{
OSL_PRECOND(m_xPage.get() != 0, "OStoreBTreeRootObject::testInvariant(): Null pointer");
bool result = ((m_xPage->location() - m_xPage->size()) == 0);
SAL_WARN_IF( !result, "store", message);
SAL_WARN_IF( (m_xPage->location() - m_xPage->size()) != 0, "store", message);
}
/*
......
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