From 048b7df3f7390b8f545a540f8df3e1e1ae62d967 Mon Sep 17 00:00:00 2001 From: ehofman Date: Wed, 28 Sep 2005 13:55:54 +0000 Subject: [PATCH] Use our own (crossplatform) stdint implementation. --- utils/GPSsmooth/MIDG-II.hxx | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/utils/GPSsmooth/MIDG-II.hxx b/utils/GPSsmooth/MIDG-II.hxx index cfa5daa55..e35ffa96a 100644 --- a/utils/GPSsmooth/MIDG-II.hxx +++ b/utils/GPSsmooth/MIDG-II.hxx @@ -12,17 +12,7 @@ #include #include -#ifdef HAVE_STDINT_H -# include -#elif defined( _MSC_VER ) || defined(__MINGW32__) || defined(sun) -typedef signed short int16_t; -typedef signed int int32_t; -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; -#else -# error "Port me! Platforms that don't have need to define int8_t, et. al." -#endif - +#include #include SG_USING_STD(cout); -- 2.39.5