Skip to content

Commit 8ebc335

Browse files
committed
Merge pull request #280 from hyperium/rustup
Rustup
2 parents 0a92e0d + b002b6c commit 8ebc335

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ use self::HttpError::{HttpMethodError, HttpUriError, HttpVersionError,
153153

154154
macro_rules! todo(
155155
($($arg:tt)*) => (if cfg!(not(ndebug)) {
156-
log!(5, "TODO: {:?}", format_args!($($arg)*))
156+
trace!("TODO: {:?}", format_args!($($arg)*))
157157
})
158158
);
159159

@@ -245,6 +245,7 @@ impl FromError<url::ParseError> for HttpError {
245245
}
246246
}
247247

248+
#[allow(unconditional_recursion)]
248249
fn _assert_send<T: Send>() {
249250
_assert_send::<client::Request<net::Fresh>>();
250251
_assert_send::<client::Response>();

0 commit comments

Comments
 (0)