2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-03 13:35:35 +00:00

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

View File

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