Skip to content

Commit 0c62135

Browse files
committed
refactor(clock): Remove default from clock::Error type parameter
1 parent c1be8f7 commit 0c62135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::{
88
/// Potential `Clock` errors
99
#[non_exhaustive]
1010
#[derive(Debug, Eq, PartialEq)]
11-
pub enum Error<E: crate::Error = ()> {
11+
pub enum Error<E: crate::Error> {
1212
/// implementation-specific error
1313
Other(E),
1414
}

0 commit comments

Comments
 (0)