Changeset 640

Show
Ignore:
Timestamp:
05/02/08 00:08:43 (14 months ago)
Author:
mloskot
Message:

Fixed annoying compilation warnings thrown by GCC.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/apps/lascommon.c

    r623 r640  
    507507        }                 
    508508    }    
    509  
    510509} 
     510 
  • trunk/include/liblas/cstdint.hpp

    r378 r640  
    112112#ifndef UINT64_C 
    113113# if ULONG_MAX != 0xffffffff 
    114 #  if ULONG_MAX == 18446744073709551615 // 2**64 - 1 
     114#  if ULONG_MAX == 18446744073709551615 /* 2**64 - 1 */ 
    115115    typedef long                int64_t; 
    116116    typedef unsigned long       uint64_t; 
  • trunk/src/las_c_api.cpp

    r626 r640  
    12101210 
    12111211LAS_C_END 
     1212