Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Quirk <chrisq@microsoft.com>2012-08-22 22:12:57 +0400
committerChris Quirk <chrisq@microsoft.com>2012-08-22 22:12:57 +0400
commit5a5c49a99b4a0d149bae4338bcc851d941f3720f (patch)
treec6906a6ae88df504b4ab1945c646c73beb58b5ba /vowpalwabbit/hash.cc
parentad7354e8ef67e2afceecabf76d4ed871ee068226 (diff)
make it compile in win32
Diffstat (limited to 'vowpalwabbit/hash.cc')
-rw-r--r--vowpalwabbit/hash.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/vowpalwabbit/hash.cc b/vowpalwabbit/hash.cc
index b1955ae5..4aeb176a 100644
--- a/vowpalwabbit/hash.cc
+++ b/vowpalwabbit/hash.cc
@@ -28,8 +28,7 @@
// Platform-specific functions and macros
#if defined(_MSC_VER) // Microsoft Visual Studio
- typedef unsigned char uint8_t;
- typedef unsigned long uint32_t;
+# include <stdint.h>
# define FORCE_INLINE __forceinline
# include <stdlib.h>