| 12345678910111213141516171819202122232425 |
- // Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
- // Use of this source code is governed by an MIT-style license that can be
- // found in the LICENSE file.
- //+build !anal
- package files
- import "github.com/calmh/syncthing/scanner"
- type key struct {
- Name string
- Version uint64
- }
- func keyFor(f scanner.File) key {
- return key{
- Name: f.Name,
- Version: f.Version,
- }
- }
- func (a key) newerThan(b key) bool {
- return a.Version > b.Version
- }
|