소스 검색

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