summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-10-31 16:11:44 +0100
committerEike Rathke <erack@redhat.com>2014-10-31 16:20:46 +0100
commit2ec4c8b07427af868e32e14aaefd20649c1135d6 (patch)
treed13e7b4d5b25cf6e7be6f065e52189ebb6179414
parent4c3dbdd2afafa6d112e8262b448ce9462472ee49 (diff)
converity#1249470 Uninitialized scalar field
comment it's unnecessary Change-Id: Iebf2d1dbed1f9c1e2e09144f47e73d9628355f2e
-rw-r--r--sc/inc/token.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx
index 7eb4ef0f2f39..da4f9e96df89 100644
--- a/sc/inc/token.hxx
+++ b/sc/inc/token.hxx
@@ -383,6 +383,8 @@ public:
{
pS = 0;
pD = rT.GetDoubleRef();
+ // aDub intentionally not initialized, unnecessary
+ // because unused.
}
}
SingleDoubleRefModifier( ScSingleRefData& rS )