YAML generator now skips plugins with no metadata.

This commit is contained in:
WrinklyNinja
2013-09-14 11:54:08 +01:00
parent aecfa44b3c
commit 9d469590ba
+2 -2
View File
@@ -691,7 +691,7 @@ namespace YAML {
}
inline Emitter& operator << (Emitter& out, const boss::Plugin& rhs) {
//if (!rhs.HasNameOnly()) {
if (!rhs.HasNameOnly()) {
out << BeginMap
<< Key << "name" << Value << rhs.Name();
@@ -718,6 +718,6 @@ namespace YAML {
out << Key << "tag" << Value << rhs.Tags();
out << EndMap;
//}
}
}
}