2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-08 13:39:05 +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 { class HelpOutput {
public: public:
typedef void (*HelpFunc)(HelpOutput&); using HelpFunc = void (*)(HelpOutput&);
private: private:
FILE* m_sout; FILE* m_sout;