10139N/A--- openjade-1.3.2.orig/config/configure.in Mon Jan 5 18:00:49 2004
10139N/A+++ openjade-1.3.2/config/configure.in Mon Jan 5 18:03:02 2004
10139N/A@@ -130,6 +130,9 @@
10139N/A [define this to compile explicit template instantiations])
10139N/A CXXFLAGS="$CXXFLAGS -fno-implicit-templates"
10139N/A fi
10139N/A+ else
10139N/A+ AC_DEFINE(SP_DEFINE_TEMPLATES,1,
10139N/A+ [define this to include template definitions in the headers])
10139N/A fi
10139N/A ;;
10139N/A esac
10139N/A--- openjade-1.3.2/style/primitive.cxx.orig Tue Jan 6 05:45:14 2004
10139N/A+++ openjade-1.3.2/style/primitive.cxx Tue Jan 6 05:45:39 2004
10139N/A@@ -5047,7 +5047,7 @@
10139N/A if (!argv[1]->exactIntegerValue(n2))
10139N/A return argError(interp, loc,
10139N/A InterpreterMessages::notAnExactInteger, 1, argv[1]);
10139N/A- return new (interp) QuantityObj(pow(d1,n2), dim1*n2);
10139N/A+ return new (interp) QuantityObj(pow(d1,(int)n2), dim1*n2);
10139N/A }
10139N/A else {
10139N/A if ((q2 == ELObj::noQuantity) || (dim2 != 0))