From 401986e6bb565f94d975acaba9504eb6ee3c8598 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Tue, 26 Oct 2010 15:35:56 +0200 Subject: Build with MSVC2005 fixed To use __rdtsc() function MSVC2005 requires including intrin.h Signed-off-by: Martin Sustrik --- src/clock.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/clock.cpp b/src/clock.cpp index 432b48e..5d91df5 100644 --- a/src/clock.cpp +++ b/src/clock.cpp @@ -25,6 +25,10 @@ #include +#if defined _MSC_VER +#include +#endif + #if !defined ZMQ_HAVE_WINDOWS #include #endif -- cgit v1.2.3