Commit 7ce3d1599573e0cbedb7655b8419cbd8d670a7cc

czurnieden 2018-12-07T21:18:43

commented additional preprocessor branch in bn_mp_set_double.c

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/bn_mp_set_double.c b/bn_mp_set_double.c
index 8a148e9..c78cb22 100644
--- a/bn_mp_set_double.c
+++ b/bn_mp_set_double.c
@@ -49,6 +49,7 @@ int mp_set_double(mp_int *a, double b)
    return MP_OKAY;
 }
 #else
+/* pragma message() not supported by several compilers (in mostly older but still used versions) */
 #  ifdef _MSC_VER
 #    pragma message("mp_set_double implementation is only available on platforms with IEEE754 floating point format")
 #  else