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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2015-03-25 03:55:39 +0300
committerHieu Hoang <hieuhoang@gmail.com>2015-03-25 03:55:39 +0300
commit1064aaacbe4e7dd0571f35ef0eba3a2efc212859 (patch)
treea87e0fcc565144a675dceddbb6550991f0068d20 /moses/TypeDef.h
parentcdc5e0fb33ece0a8d21af36557de8d7b9ae61509 (diff)
delete typedefs for UINT32 and UINT64. MSVC now has uint32_t and uint64_t /Ken
Diffstat (limited to 'moses/TypeDef.h')
-rw-r--r--moses/TypeDef.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/moses/TypeDef.h b/moses/TypeDef.h
index 59cb91499..a47a6e2fe 100644
--- a/moses/TypeDef.h
+++ b/moses/TypeDef.h
@@ -23,17 +23,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#include <limits>
#include <vector>
#include <string>
+#include <stdint.h>
//! all the typedefs and enums goes here
-#ifdef WIN32
-#include <BaseTsd.h>
-#else
-#include <stdint.h>
-
-typedef uint32_t UINT32;
-typedef uint64_t UINT64;
-#endif
namespace Moses
{