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:
@@ -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 << "]";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user