From 4e903e81e783f74ec6624a3a53e96370492c0bba Mon Sep 17 00:00:00 2001 From: Vitaly Chikunov Date: Fri, 3 Dec 2021 12:32:35 +0300 Subject: [PATCH] MSVC: Remove GCC pragma messages These planned to be removed later anyway. Error message: gosthash2012_ref.h(15,18): warning C4081: expected '('; found 'string' Signed-off-by: Vitaly Chikunov --- gosthash2012_ref.h | 2 -- gosthash2012_sse2.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/gosthash2012_ref.h b/gosthash2012_ref.h index c113e15..f2383ea 100644 --- a/gosthash2012_ref.h +++ b/gosthash2012_ref.h @@ -12,8 +12,6 @@ # error "GOST R 34.11-2012: portable implementation disabled in config.h" #endif -# pragma message "Use regular implementation" - #define X(x, y, z) { \ z->QWORD[0] = x->QWORD[0] ^ y->QWORD[0]; \ z->QWORD[1] = x->QWORD[1] ^ y->QWORD[1]; \ diff --git a/gosthash2012_sse2.h b/gosthash2012_sse2.h index 5f704db..07e2ec0 100644 --- a/gosthash2012_sse2.h +++ b/gosthash2012_sse2.h @@ -12,8 +12,6 @@ # error "GOST R 34.11-2012: SSE2 not enabled" #endif -# pragma message "Use SIMD implementation" - #include #include #ifdef __SSE3__ -- 2.39.2