Silence the linter

This commit is contained in:
Audrius Butkevicius 2016-01-10 17:25:11 +00:00
parent 5c36029274
commit ff4bab4c07
1 changed files with 3 additions and 3 deletions

View File

@ -68,9 +68,9 @@ const (
FlagFolderIgnoreDelete = 1 << 2
// The folder hash algorithm IDs, to be put in the flags field by shifting
// left FolderHashShiftBits
FolderHashSHA256 = 0
// ... 1 through 15 currently reserved
// left FolderHashShiftBits. 1 through 15 currently reserved.
FolderHashSHA256 = 0
FolderHashMask = 15
FolderHashShiftBits = 3
)