summaryrefslogtreecommitdiff
path: root/include/vcl/threadex.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/threadex.hxx')
-rw-r--r--include/vcl/threadex.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/threadex.hxx b/include/vcl/threadex.hxx
index 837d7d2e1136..88a4c7823d08 100644
--- a/include/vcl/threadex.hxx
+++ b/include/vcl/threadex.hxx
@@ -79,7 +79,7 @@ private:
explicit GenericSolarThreadExecutor( FuncT const& func )
: m_exc(), m_func(func), m_result() {}
- virtual long doIt() SAL_OVERRIDE
+ virtual long doIt() override
{
try {
m_result.reset( m_func() );
@@ -115,7 +115,7 @@ private:
explicit GenericSolarThreadExecutor( FuncT const& func )
: m_exc(), m_func(func) {}
- virtual long doIt() SAL_OVERRIDE
+ virtual long doIt() override
{
try {
m_func();