mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 22:42:27 -05:00
update modernc.org/sqlite to v1.37.0-concurrrency-workaround (#3958)
This commit is contained in:
parent
9c31e213ca
commit
fdf23a91de
64 changed files with 1070 additions and 8220 deletions
10
vendor/golang.org/x/exp/constraints/constraints.go
generated
vendored
10
vendor/golang.org/x/exp/constraints/constraints.go
generated
vendored
|
|
@ -6,6 +6,8 @@
|
|||
// with type parameters.
|
||||
package constraints
|
||||
|
||||
import "cmp"
|
||||
|
||||
// Signed is a constraint that permits any signed integer type.
|
||||
// If future releases of Go add new predeclared signed integer types,
|
||||
// this constraint will be modified to include them.
|
||||
|
|
@ -45,6 +47,8 @@ type Complex interface {
|
|||
// that supports the operators < <= >= >.
|
||||
// If future releases of Go add new ordered types,
|
||||
// this constraint will be modified to include them.
|
||||
type Ordered interface {
|
||||
Integer | Float | ~string
|
||||
}
|
||||
//
|
||||
// This type is redundant since Go 1.21 introduced [cmp.Ordered].
|
||||
//
|
||||
//go:fix inline
|
||||
type Ordered = cmp.Ordered
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue