Changeset 824 for trunk/include/liblas/cstdint.hpp
- Timestamp:
- 08/11/08 09:57:47 (5 months ago)
- Files:
-
- 1 modified
-
trunk/include/liblas/cstdint.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/liblas/cstdint.hpp
r813 r824 55 55 56 56 #ifdef LIBLAS_C_API 57 #include <limits.h> 58 59 #ifndef _WIN32 60 #include <stdint.h> 61 #endif /* _WIN32 */ 62 63 #else 64 #include <climits> 57 # include <limits.h> 58 # ifndef _MSV_VER 59 # include <stdint.h> 60 # endif /* _MSC_VER */ 61 #else /* LIBLAS_C_API */ 62 # include <climits> 65 63 namespace liblas 66 64 { … … 174 172 #endif /* LIBLAS_CSTDINT_HPP_INCLUDED */ 175 173 176
