driver/ToolBase: Convert typedef into using alias

Same thing, but a little nicer to read.
This commit is contained in:
Lioncash 2019-08-19 22:51:04 -04:00
parent f746b30b03
commit 789650d4c0
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public:
class HelpOutput {
public:
typedef void (*HelpFunc)(HelpOutput&);
using HelpFunc = void (*)(HelpOutput&);
private:
FILE* m_sout;