made preprocessor warning in bn_mp_set_double.c portable
This commit is contained in:
parent
dc150614d9
commit
44e4986bfe
@ -49,7 +49,11 @@ int mp_set_double(mp_int *a, double b)
|
||||
return MP_OKAY;
|
||||
}
|
||||
#else
|
||||
# warning "mp_set_double implementation is only available on platforms with IEEE754 floating point format"
|
||||
# ifdef _MSC_VER
|
||||
# pragma message("mp_set_double implementation is only available on platforms with IEEE754 floating point format")
|
||||
# else
|
||||
# warning "mp_set_double implementation is only available on platforms with IEEE754 floating point format"
|
||||
# endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user