Skip to content

Commit

Permalink
Make FixClashesMode start from 1 + iota
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin committed Dec 18, 2016
1 parent 41bf61e commit 9d078d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clashes.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
type FixClashesMode uint8

const (
FixClashesRename FixClashesMode = iota
FixClashesRename FixClashesMode = 1 + iota
FixClashesTrash
)

Expand Down

0 comments on commit 9d078d9

Please sign in to comment.