FreeBSD Bugzilla – Attachment 216198 Details for
Bug 247763
math/suitesparse: Fails to build: error: implicit conversion from 'long' to 'double' (-Werror)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Patch for in /usr/ports/math/suitesparse/files.
patch-SLIP__LU_Source_slip__internal.h (text/plain), 432 bytes, created by
rsmith
on 2020-07-04 16:51:12 UTC
(
hide
)
Description:
Patch for in /usr/ports/math/suitesparse/files.
Filename:
MIME Type:
Creator:
rsmith
Created:
2020-07-04 16:51:12 UTC
Size:
432 bytes
patch
obsolete
>--- SLIP_LU/Source/slip_internal.h.orig 2020-07-03 16:11:39 UTC >+++ SLIP_LU/Source/slip_internal.h >@@ -660,11 +660,11 @@ static inline int64_t slip_cast_double_to_int64 (doubl > { > return (0) ; > } >- else if (x > INT64_MAX) >+ else if (x > (double)INT64_MAX) > { > return (INT64_MAX) ; > } >- else if (x < INT64_MIN) >+ else if (x < (double)INT64_MIN) > { > return (INT64_MIN) ; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 247763
: 216198 |
216208