summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-09-03 19:04:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-09-03 19:04:42 +0100
commit0047512ad973ad2d214eff6afd06c9eab856dfba (patch)
treeed4ac5686380cf0e5b97b3b498d1f48591d0ac77 /sc
parentdca56edbb1a0feae7cc8fa090e298ec38ecb5602 (diff)
try and silence uninit_member
Change-Id: Iac633a1793a79049aa6e7adde1692b469b03b74b
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/compiler.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/compiler.hxx b/sc/inc/compiler.hxx
index 14e760e95534..9b7cb58f5545 100644
--- a/sc/inc/compiler.hxx
+++ b/sc/inc/compiler.hxx
@@ -135,8 +135,8 @@ public:
short nJump[ FORMULA_MAXJUMPCOUNT + 1 ]; // If/Chose token
};
- //! members not initialized
- ScRawToken() {}
+ // coverity[uninit_member] - members deliberately not initialized
+ ScRawToken() {}
private:
~ScRawToken() {} //! only delete via Delete()
public: