mirror of
https://github.com/gitui-org/gitui
synced 2026-05-22 16:38:28 +00:00
fix formating for rust 1.50
This commit is contained in:
parent
a2a6754990
commit
be3a33e862
1 changed files with 3 additions and 1 deletions
|
|
@ -4,7 +4,9 @@ use git2::{Commit, Error, Oid};
|
|||
use scopetime::scope_time;
|
||||
|
||||
/// identifies a single commit
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, Ord, PartialOrd)]
|
||||
#[derive(
|
||||
Debug, Copy, Clone, PartialEq, Eq, Hash, Ord, PartialOrd,
|
||||
)]
|
||||
pub struct CommitId(Oid);
|
||||
|
||||
impl CommitId {
|
||||
|
|
|
|||
Loading…
Reference in a new issue