forked from pool/qcdloop
A library of one-loop scalar Feynman integrals. OBS-URL: https://build.opensuse.org/request/show/826885 OBS-URL: https://build.opensuse.org/package/show/science/qcdloop?expand=0&rev=1
14 lines
506 B
Diff
14 lines
506 B
Diff
Index: qcdloop-2.0.5b1/src/types.cc
|
|
===================================================================
|
|
--- qcdloop-2.0.5b1.orig/src/types.cc
|
|
+++ qcdloop-2.0.5b1/src/types.cc
|
|
@@ -13,7 +13,7 @@ namespace std
|
|
{
|
|
char buf[200];
|
|
std::ostringstream format;
|
|
- format << "%." << (std::min)(190L, out.precision()) << "Qe";
|
|
+ format << "%." << (std::min)(190L, (long int)out.precision()) << "Qe";
|
|
quadmath_snprintf(buf, 200, format.str().c_str(), f);
|
|
out << buf;
|
|
return out;
|