From f13caadded5cd35dec32e77ed7bf7bde0d066dca Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Fri, 22 Jan 2016 16:13:06 +0800 Subject: [PATCH] Fix valgrind problem --- test/unittest/readertest.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/unittest/readertest.cpp b/test/unittest/readertest.cpp index c519983..3b84ab7 100644 --- a/test/unittest/readertest.cpp +++ b/test/unittest/readertest.cpp @@ -14,14 +14,6 @@ #include "unittest.h" -// __SSE2__ and __SSE4_2__ are recognized by gcc, clang, and the Intel compiler. -// We use -march=native with gmake to enable -msse2 and -msse4.2, if supported. -#if defined(__SSE4_2__) -# define RAPIDJSON_SSE42 -#elif defined(__SSE2__) -# define RAPIDJSON_SSE2 -#endif - #include "rapidjson/reader.h" #include "rapidjson/internal/dtoa.h" #include "rapidjson/internal/itoa.h"