diff options
author | Wim <wim@42.be> | 2022-11-27 00:42:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 00:42:16 +0100 |
commit | 4fd0a7672777f0ed15692ae2ba47838208537558 (patch) | |
tree | b119834a8b9ee78aa8f1b2ad05efa7da50516cbf /vendor/modernc.org/mathutil | |
parent | 6da9d567dc9195e9a5211f23a6795a41f56a1bfc (diff) | |
download | matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.tar.gz matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.tar.bz2 matterbridge-msglm-4fd0a7672777f0ed15692ae2ba47838208537558.zip |
Update dependencies (#1929)
Diffstat (limited to 'vendor/modernc.org/mathutil')
-rw-r--r-- | vendor/modernc.org/mathutil/sqr.go | 3 | ||||
-rw-r--r-- | vendor/modernc.org/mathutil/sqr_std.go | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/vendor/modernc.org/mathutil/sqr.go b/vendor/modernc.org/mathutil/sqr.go index 0b29b874..b7e15c9d 100644 --- a/vendor/modernc.org/mathutil/sqr.go +++ b/vendor/modernc.org/mathutil/sqr.go @@ -1,4 +1,5 @@ -// +build !riscv64 +//go:build !riscv64 && !loong64 +// +build !riscv64,!loong64 package mathutil diff --git a/vendor/modernc.org/mathutil/sqr_std.go b/vendor/modernc.org/mathutil/sqr_std.go index 50c69204..a19c772d 100644 --- a/vendor/modernc.org/mathutil/sqr_std.go +++ b/vendor/modernc.org/mathutil/sqr_std.go @@ -1,4 +1,5 @@ -// +build riscv64 +//go:build riscv64 || loong64 +// +build riscv64 loong64 package mathutil |