aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Carpet/CarpetLib/src/defs.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Carpet/CarpetLib/src/defs.hh b/Carpet/CarpetLib/src/defs.hh
index ff89ad668..2fbe4e836 100644
--- a/Carpet/CarpetLib/src/defs.hh
+++ b/Carpet/CarpetLib/src/defs.hh
@@ -238,7 +238,7 @@ inline const char * typestring (const CCTK_COMPLEX32&)
\
inline int good_isnormal(T const& x) \
{ \
- return isnormal(x.real()) or isnormal(x.imag()); \
+ return isnormal(x.real()) and isnormal(x.imag()); \
}
namespace std {