Modernize all typedefs with using statements

This commit is contained in:
Alex Chernyakhovsky
2023-07-30 17:27:10 -04:00
committed by Alex Chernyakhovsky
parent 38c84a9330
commit 8469db91db
9 changed files with 14 additions and 16 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ namespace Terminal {
bool clears_wrap_state;
};
typedef std::map<std::string, Function> dispatch_map_t;
using dispatch_map_t = std::map<std::string, Function>;
class DispatchRegistry {
public: