mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 20:52:24 -05:00
[chore] Bump database dependencies (#1164)
github.com/uptrace/bun v1.1.8 -> v1.1.9 github.com/uptrace/bun/pgdialect v1.1.8 -> v1.1.9 github.com/uptrace/bun/sqlitedialect v1.1.8 -> v1.1.9 modernc.org/sqlite v1.18.2 -> v1.19.5
This commit is contained in:
parent
fe39d50e09
commit
daf44ac2b7
529 changed files with 971879 additions and 1370194 deletions
9
vendor/modernc.org/libc/libc.go
generated
vendored
9
vendor/modernc.org/libc/libc.go
generated
vendored
|
|
@ -575,7 +575,16 @@ func Xabs(t *TLS, j int32) int32 {
|
|||
return -j
|
||||
}
|
||||
|
||||
func Xllabs(tls *TLS, a int64) int64 {
|
||||
if a >= int64(0) {
|
||||
return a
|
||||
}
|
||||
|
||||
return -a
|
||||
}
|
||||
|
||||
func X__builtin_isnan(t *TLS, x float64) int32 { return Bool32(math.IsNaN(x)) }
|
||||
func X__builtin_llabs(tls *TLS, a int64) int64 { return Xllabs(tls, a) }
|
||||
func Xacos(t *TLS, x float64) float64 { return math.Acos(x) }
|
||||
func Xacosh(t *TLS, x float64) float64 { return math.Acosh(x) }
|
||||
func Xasin(t *TLS, x float64) float64 { return math.Asin(x) }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue