2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-29 19:42:11 +00:00

finished change, attributes[e] -> seq in write_attribute()

[SVN r12158]
This commit is contained in:
Jeremy Siek
2001-12-28 02:31:44 +00:00
parent 8dc5ae74ee
commit de0a153c53

View File

@@ -199,9 +199,9 @@ namespace boost {
void write_attribute(std::ostream& out,
const AttributeSequence& seq) const
{
if (!attributes[e].empty()) {
if (!seq.empty()) {
out << "[";
write_attributes(attributes[e], out);
write_attributes(seq, out);
out << "]";
}
}