From 789650d4c0542a950e8a878e5232fe17e08b546d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 19 Aug 2019 22:51:04 -0400 Subject: [PATCH] driver/ToolBase: Convert typedef into using alias Same thing, but a little nicer to read. --- hecl/driver/ToolBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hecl/driver/ToolBase.hpp b/hecl/driver/ToolBase.hpp index 990c46b24..b154c52ba 100644 --- a/hecl/driver/ToolBase.hpp +++ b/hecl/driver/ToolBase.hpp @@ -101,7 +101,7 @@ public: class HelpOutput { public: - typedef void (*HelpFunc)(HelpOutput&); + using HelpFunc = void (*)(HelpOutput&); private: FILE* m_sout;