medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 484afc386e4b6d987f7df6ba741a5ed95aea0ae0
parent 83aab36310739ff2b8a40bc443b9bdf7fe4e5fc2
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Sep 14 16:07:18 +0100

Don't include x86intrin.h with MSVC

Diffstat:
benchmark.cc | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/benchmark.cc b/benchmark.cc @@ -1,5 +1,7 @@ -// TODO: this header doesn't exist on windows +// TODO +#if !defined( _MSC_VER ) #include <x86intrin.h> +#endif #include "intrinsics.h" #include "benchmark.h"