Diff for /parser3/src/include/pa_config_includes.h between versions 1.23.2.5 and 1.23.2.5.2.3

version 1.23.2.5, 2003/02/04 10:57:16 version 1.23.2.5.2.3, 2003/04/11 16:05:43
Line 8 Line 8
         fixed otherwise.          fixed otherwise.
 */  */
   
   #ifndef PA_CONFIG_INCLUDES_H
   #define PA_CONFIG_INCLUDES_H
   
 #if _MSC_VER  #if _MSC_VER
 #       pragma warning(disable:4291)   // disable warning   #       pragma warning(disable:4291)   // disable warning 
 //      "no matching operator delete found; memory will not be freed if initialization throws an exception  //      "no matching operator delete found; memory will not be freed if initialization throws an exception
Line 23 Line 26
 #       undef   inline  #       undef   inline
 #endif  #endif
   
   #ifdef HAVE_ASSERT_H
   #       include <assert.h>
   #endif
   
 #ifdef HAVE_CTYPE_H  #ifdef HAVE_CTYPE_H
 #       include <ctype.h>  #       include <ctype.h>
 #endif  #endif
Line 67 Line 74
 #       include <math.h>  #       include <math.h>
 #endif  #endif
   
 #ifdef HAVE_STDLIB_H  #include <stdlib.h>
 #       include <stdlib.h>  
 #endif  
   
 #ifdef HAVE_STRING_H  #ifdef HAVE_STRING_H
 #       include <string.h>  #       include <string.h>
Line 145 Line 150
 #endif  #endif
   
   
   // math function replacements
   
   #ifndef HAVE_TRUNC
   inline double trunc(double param) { return param > 0? floor(param) : ceil(param); }
   #endif
   
   #ifndef HAVE_ROUND
   inline double round(double param) { return floor(param+0.5); }
   #endif
   
   #ifndef HAVE_SIGN
   inline double sign(double param) { return param > 0 ? 1 : ( param < 0 ? -1 : 0 ); }
   #endif
   
   #if !defined(max)
   inline int max(int a, int b) { return a>b?a:b; }
   inline int min(int a, int b){ return a<b?a:b; }
   inline size_t max(size_t a, size_t b) { return a>b?a:b; }
   inline size_t min(size_t a, size_t b){ return a<b?a:b; }
   #endif
   
   #endif

Removed from v.1.23.2.5  
changed lines
  Added in v.1.23.2.5.2.3


E-mail: