summaryrefslogtreecommitdiffstats
path: root/src/bltVecMath.C
diff options
context:
space:
mode:
authorjoye <joye>2013-08-29 14:48:30 (GMT)
committerjoye <joye>2013-08-29 14:48:30 (GMT)
commit2f8af562fa845d6cab155d0381826ffd2ba5f49a (patch)
tree08ad93966514d7dd6c6b0fc2e758d2c8d1359c13 /src/bltVecMath.C
parent29b79ddc6fe85c653e5a200c52943a0615992382 (diff)
downloadblt-2f8af562fa845d6cab155d0381826ffd2ba5f49a.zip
blt-2f8af562fa845d6cab155d0381826ffd2ba5f49a.tar.gz
blt-2f8af562fa845d6cab155d0381826ffd2ba5f49a.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltVecMath.C')
-rw-r--r--src/bltVecMath.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bltVecMath.C b/src/bltVecMath.C
index 2638667..abc6812 100644
--- a/src/bltVecMath.C
+++ b/src/bltVecMath.C
@@ -1646,7 +1646,7 @@ EvaluateExpression(
/* Check for NaN's and overflows. */
for (vp = vPtr->valueArr, vend = vp + vPtr->length; vp < vend; vp++) {
- if (!FINITE(*vp)) {
+ if (!isfinite(*vp)) {
/*
* IEEE floating-point error.
*/
@@ -1694,7 +1694,7 @@ ComponentFunc(
MathError(interp, *vp);
return TCL_ERROR;
}
- if (!FINITE(*vp)) {
+ if (!isfinite(*vp)) {
/*
* IEEE floating-point error.
*/