Mercurial > hg > svcore
comparison base/Thread.h @ 1580:c01cbe41aeb5 fix-static-analysis
Use override throughout
author | Chris Cannam |
---|---|
date | Mon, 26 Nov 2018 13:48:45 +0000 |
parents | 115f60df1e4d |
children | ad5f892c0c4d |
comparison
equal
deleted
inserted
replaced
1579:232d6ddf257d | 1580:c01cbe41aeb5 |
---|---|
32 | 32 |
33 public slots: | 33 public slots: |
34 void start(); | 34 void start(); |
35 | 35 |
36 protected: | 36 protected: |
37 virtual void run() = 0; | 37 void run() override = 0; |
38 | 38 |
39 private: | 39 private: |
40 Type m_type; | 40 Type m_type; |
41 }; | 41 }; |
42 | 42 |