summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-06-18 07:53:14 +0200
committerMatúš Kukan <matus.kukan@collabora.com>2014-06-18 07:54:04 +0200
commit836454d0c1a490066f12cbe6327422ffb1065426 (patch)
tree1f6d8a2632fa6803e152c15ff15d0a7b83bf99d3 /sc
parente1386e32a85eb5c6b4294a8ca3e4461b92707fc3 (diff)
loplugin:saloverride
Change-Id: Ic2799c029c26dcd18a482b51f53248ef1c4b569a
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/opencl/formulagroupcl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index e19d4a2388c1..1b88527fbab4 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -1756,7 +1756,7 @@ public:
return lhs + "*" + rhs;
}
virtual std::string BinFuncName(void) const SAL_OVERRIDE { return "fmul"; }
- virtual bool ZeroReturnZero() {return true;};
+ virtual bool ZeroReturnZero() SAL_OVERRIDE { return true; }
};
/// Technically not a reduction, but fits the framework.