Also fix fully qualified paths to the timing macro.

This commit is contained in:
Toby Lawrence 2019-08-09 14:17:07 -04:00
parent e3cd2ada68
commit cf29d69a1e
No known key found for this signature in database
GPG Key ID: 3BB201B0EEE9212E
1 changed files with 2 additions and 2 deletions

View File

@ -152,11 +152,11 @@ macro_rules! timing {
};
($name:expr, $start:expr, $end:expr) => {
timing!($name, $end - $start)
$crate::timing!($name, $end - $start)
};
($name:expr, $start:expr, $end:expr, $($labels:tt)*) => {
timing!($name, $end - $start, $($labels)*)
$crate::timing!($name, $end - $start, $($labels)*)
};
($name:expr, $value:expr, $($labels:tt)*) => {