From 22e3ac45b320da0f1bae05bfc6915c9af0424b5e Mon Sep 17 00:00:00 2001 From: Kristof Szabados <Kristof.Szabados@ericsson.com> Date: Tue, 7 Feb 2017 10:50:17 +0100 Subject: [PATCH] comment correction Signed-off-by: Kristof Szabados <Kristof.Szabados@ericsson.com> --- common/ttcn3float.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/ttcn3float.hh b/common/ttcn3float.hh index ba67e2932..13fbba3c6 100644 --- a/common/ttcn3float.hh +++ b/common/ttcn3float.hh @@ -24,9 +24,9 @@ #define MAX_DECIMAL_FLOAT 1.0E+10 #ifndef signbit - Probably Solaris. - Thankfully, IEEE Std 1003.1, 2004 Edition says that signbit is a macro, - hence it's safe to use ifdef. +// Probably Solaris. +// Thankfully, IEEE Std 1003.1, 2004 Edition says that signbit is a macro, +// hence it's safe to use ifdef. #ifdef __sparc // Big endian @@ -37,7 +37,7 @@ inline int signbitfunc(double d) } #else - Probably Intel, assume little endian +// Probably Intel, assume little endian inline int signbitfunc(double d) { return ((unsigned char*)&d)[sizeof(double)-1] & 0x80; -- GitLab