-
Notifications
You must be signed in to change notification settings - Fork 106
Fix rustc build #199
Fix rustc build #199
Conversation
What is this lint for, again? |
To warn when a doc comment is unused by rustdoc. As simple as that. |
@@ -423,6 +424,7 @@ macro_rules! impl_extract_backtrace { | |||
($error_name: ident | |||
$error_kind_name: ident | |||
$([$link_error_path: path, $(#[$meta_links: meta])*])*) => { | |||
#[allow(unused_doc_comment)] | |||
fn extract_backtrace(e: &(::std::error::Error + Send + 'static)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum, do you know why this one is needed? This item doesn't have a doc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But it can because of its meta and then we'll have the issue.
Also, could you update the changelog? |
Sure. |
Done. |
Thanks! |
Can we make a small release (0.0.x) so I can update cargo dependency please? |
I'll see that in this evening CEST. |
Any news? :) |
Right, on it ^^ |
Thanks! :) |
0.11.0-rc.1 published. My bad, I should have checked: could you fix https://travis-ci.org/brson/error-chain/jobs/258678124#L322-L334? |
Ah right, sorry. I was testing with my own rustc version so I didn't saw it. Sending the fix. |
It's in order to make rust-lang/rust#43009 build successfully.