Closed levin-go closed 4 months ago
When I was running the latest version on armv7, I encountered a panic
the code in version.go
func (v Version) LessThan(other Version) bool { return v.Major < other.Major || v.Minor < other.Minor || v.Patch < other.Patch }
should be change to ?
func (v Version) LessThan(other Version) bool { if v.Major > other.Major { return false } if v.Minor > other.Minor { return false } if v.Patch > other.Patch { return false } if (v.Major == other.Major && v.Minor == other.Minor && v.Patch == other.Patch){ return false } return true }
sorry, I should submit this bug in the objectbox go project.
When I was running the latest version on armv7, I encountered a panic
the code in version.go
should be change to ?