diff options
author | Rich Salz <rsalz@openssl.org> | 2017-08-25 22:05:18 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-08-27 17:35:39 +0200 |
commit | b2db9c18b23f59c3a08ef10f0ee85f24d43da2a4 (patch) | |
tree | c6ffbf9e811eee2ff4eb9e0c95c21add57f836e4 /test/ectest.c | |
parent | Remove NO_DIRENT; it isn't used anywhere (diff) | |
download | openssl-b2db9c18b23f59c3a08ef10f0ee85f24d43da2a4.tar.xz openssl-b2db9c18b23f59c3a08ef10f0ee85f24d43da2a4.zip |
MSC_VER <= 1200 isn't supported; remove dead code
VisualStudio 6 and earlier aren't supported.
Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4263)
Diffstat (limited to 'test/ectest.c')
-rw-r--r-- | test/ectest.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/ectest.c b/test/ectest.c index 3267a3daf5..03d7943301 100644 --- a/test/ectest.c +++ b/test/ectest.c @@ -23,11 +23,6 @@ # include <openssl/bn.h> # include <openssl/opensslconf.h> -# if defined(_MSC_VER) && defined(_MIPS_) && (_MSC_VER/100==12) -/* suppress "too big too optimize" warning */ -# pragma warning(disable:4959) -# endif - static size_t crv_len = 0; static EC_builtin_curve *curves = NULL; |