summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2016-11-12 17:42:57 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2016-11-12 17:44:23 -0500
commitf20df23ad9380d19dfb64b51d943109bd3895efe (patch)
treed3b94f8af496a6139bb758a67311b90af1664b9e /sc
parent633b9f30d0037f91e51e024960155c738c2fadb0 (diff)
Keep loplugin:staticmethods happy.
Change-Id: I2cdf67490d61b2868910e615bfc44d126d207bcb
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column2.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index ce496f661e53..22d911fbf21d 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -1670,7 +1670,10 @@ struct FormulaGroupDumper : std::unary_function<sc::CellStoreType::value_type, v
cout << endl;
}
#else
- void printResult(const ScFormulaCell*) const {}
+ void printResult(const ScFormulaCell*) const
+ {
+ (void) this; /* loplugin:staticmethods */
+ }
#endif
};