Changeset 824

Show
Ignore:
Timestamp:
08/11/08 09:57:47 (4 months ago)
Author:
mloskot
Message:

liblas/cstdint.hpp: replaced _WIN32 with _MSVC_VER because we want to test compiler not operating system.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/include/liblas/cstdint.hpp

    r813 r824  
    5555 
    5656#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> 
    6563namespace liblas 
    6664{ 
     
    174172#endif /* LIBLAS_CSTDINT_HPP_INCLUDED */ 
    175173 
    176