mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Somehow I forgot to parse dirty info.
This commit is contained in:
@@ -324,6 +324,7 @@ namespace YAML {
|
||||
node["inc"] = rhs.Incs();
|
||||
node["msg"] = rhs.Messages();
|
||||
node["tag"] = rhs.Tags();
|
||||
node["dirty"] = rhs.DirtyInfo();
|
||||
|
||||
return node;
|
||||
}
|
||||
@@ -350,6 +351,9 @@ namespace YAML {
|
||||
rhs.Messages(node["msg"].as< std::list<boss::Message> >());
|
||||
if (node["tag"])
|
||||
rhs.Tags(node["tag"].as< std::set<boss::Tag> >());
|
||||
if (node["dirty"])
|
||||
rhs.DirtyInfo(node["dirty"].as< std::set<boss::PluginDirtyInfo> >());
|
||||
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user