This is the mail archive of the libstdc++@sourceware.cygnus.com mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A couple shadow header typos.



hi -

I was playing with the shadow header stuff recently, and i ran into
two apparent typos.  Hopefully, these are obvious.

2000-06-28  scott snyder  <snyder@fnal.gov>

	* shadow/bits/std_cmath.h: Fix typo in _GLIBCPP_HAVE_CEILL test.

	* mkinclosure: Change `==' to `=' in test.

thanks,
sss

Index: shadow/bits/std_cmath.h
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/shadow/bits/std_cmath.h,v
retrieving revision 1.5
diff -u -p -c -p -r1.5 std_cmath.h
*** std_cmath.h	2000/06/22 23:59:04	1.5
--- std_cmath.h	2000/07/03 04:27:37
***************
*** 365,371 ****
        { return atan2(static_cast<double>(__y), static_cast<double>(__x)); }
  #endif
  
! #elif _GLIBCPP_HAVE_CEILL
      inline long double _CPP_ceil_capture(long double __x)
        { return ceill(__x); }
  #else
--- 366,372 ----
        { return atan2(static_cast<double>(__y), static_cast<double>(__x)); }
  #endif
  
! #if _GLIBCPP_HAVE_CEILL
      inline long double _CPP_ceil_capture(long double __x)
        { return ceill(__x); }
  #else
Index: mkinclosure
===================================================================
RCS file: /cvs/gcc/egcs/libstdc++-v3/mkinclosure,v
retrieving revision 1.1
diff -u -p -c -p -r1.1 mkinclosure
*** mkinclosure	2000/05/25 13:09:00	1.1
--- mkinclosure	2000/07/03 04:27:45
*************** until cmp -s $OLDH $HDRS; do #  (until n
*** 87,93 ****
    | while read file; do
       drop=no
       for ignore in `cat $IGNORES`; do
!        if [ "$ignore" == "$file" ]; then drop=yes; fi
       done
       case "$file" in /*) drop=yes;; esac   # no absolute paths
       case $drop in no) echo "$file";; esac
--- 87,93 ----
    | while read file; do
       drop=no
       for ignore in `cat $IGNORES`; do
!        if [ "$ignore" = "$file" ]; then drop=yes; fi
       done
       case "$file" in /*) drop=yes;; esac   # no absolute paths
       case $drop in no) echo "$file";; esac

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]