mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
Modernize: Use "using" instead of "typedef" (#754)
This commit is contained in:

committed by
Jesse Beder

parent
0fddd1e5bd
commit
6e87b37034
@@ -95,7 +95,7 @@ class SettingChanges {
|
||||
}
|
||||
|
||||
private:
|
||||
typedef std::vector<std::unique_ptr<SettingChangeBase>> setting_changes;
|
||||
using setting_changes = std::vector<std::unique_ptr<SettingChangeBase> >;
|
||||
setting_changes m_settingChanges;
|
||||
};
|
||||
} // namespace YAML
|
||||
|
Reference in New Issue
Block a user