diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-03 15:00:57 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-03 15:31:46 -0400 |
commit | 6c9cebe420b876fc35545136bcf2047138f9d7a1 (patch) | |
tree | 2c243cf98d855ee6bd644ba1306fc1ee28eb90a5 | |
parent | 9ed7f53a96a41534338eeef27e6fa3c6c3de9b85 (diff) |
Let's not omit 'virtual' keyword here.
Change-Id: Idf4ccbb6415852325acab673a3d81f758e50c880
-rw-r--r-- | sc/source/core/opencl/formulagroupcl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx index d794e4232bfc..1b3dc093468e 100644 --- a/sc/source/core/opencl/formulagroupcl.cxx +++ b/sc/source/core/opencl/formulagroupcl.cxx @@ -307,7 +307,7 @@ public: { return mSymName + "_Random()"; } - void GenSlidingWindowFunction( std::stringstream& ss ) SAL_OVERRIDE + virtual void GenSlidingWindowFunction( std::stringstream& ss ) SAL_OVERRIDE { ss << "\ndouble " << mSymName; ss << "_Random ()\n{\n"; |