Uh oh!
There was an error while loading. Please reload this page.
Cleanup for libgraphviz - #46784
Conversation
rust-highfive
commented
Dec 17, 2017
r? @pnkfelix (rust_highfive has picked a reviewer for you, use r? to override) |
There was a problem hiding this comment.
Are cursors necessary? Can't you write to vecs directly?
There was a problem hiding this comment.
Didn't know you could write to them without cursor.
bjorn3
commented
Dec 17, 2017
As it can't fail. (Its on the |
There was a problem hiding this comment.
This change removes a newline, which breaks some tests
oli-obk
left a comment
There was a problem hiding this comment.
lgtm now. Can you just squash the commits into one?
bjorn3
commented
Dec 18, 2017
Rebased |
| writeln!(w, "digraph {} {{", g.graph_id().as_slice())?; | ||
| for n in g.nodes().iter() { | ||
| indent(w)?; | ||
| write!(w, " ")?; |
There was a problem hiding this comment.
(personally I usually prefer a function like indent over having to double-check that the string contents all match up, but since there are only two calls to indent I'm not going to make a fuss)
pnkfelix
commented
Dec 21, 2017
@bors r+ rollup |
bors
commented
Dec 21, 2017
📌 Commit 2e2defd has been approved by |
Cleanup for libgraphviz
No description provided.