瀏覽代碼

Merge pull request #3869 from ghalliday/issue8621

HPCC-8621 Reinstate typedef for hash64_t when compiling on windows

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 12 年之前
父節點
當前提交
a3bfb9ea2c
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      rtl/eclrtl/eclinclude.hpp

+ 1 - 0
rtl/eclrtl/eclinclude.hpp

@@ -55,6 +55,7 @@ typedef unsigned short UChar;
 
 #ifdef _WIN32
 typedef unsigned int size32_t; // avoid pulling in platform.h (which pulls in windows.h etc) just for this...
+typedef unsigned __int64 hash64_t;
 #else
 #include "platform.h"
 #endif