diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2016-11-12 17:42:57 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2016-11-12 17:44:23 -0500 |
commit | f20df23ad9380d19dfb64b51d943109bd3895efe (patch) | |
tree | d3b94f8af496a6139bb758a67311b90af1664b9e /sc | |
parent | 633b9f30d0037f91e51e024960155c738c2fadb0 (diff) |
Keep loplugin:staticmethods happy.
Change-Id: I2cdf67490d61b2868910e615bfc44d126d207bcb
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/column2.cxx | 5 |
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 }; |