dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System/Net WebException.cs,1.5,1.6


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System/Net WebException.cs,1.5,1.6
Date: Sat, 05 Jul 2003 01:07:13 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System/Net
In directory subversions:/tmp/cvs-serv11471/System/Net

Modified Files:
        WebException.cs 
Log Message:


Add explicit "unchecked" contexts around constants that need it.


Index: WebException.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System/Net/WebException.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** WebException.cs     26 May 2003 04:41:20 -0000      1.5
--- WebException.cs     5 Jul 2003 05:07:10 -0000       1.6
***************
*** 42,46 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131509;
                #endif
                }
--- 42,46 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131509);
                #endif
                }
***************
*** 49,53 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131509;
                #endif
                }
--- 49,53 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131509);
                #endif
                }
***************
*** 56,60 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131509;
                #endif
                }
--- 56,60 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131509);
                #endif
                }
***************
*** 65,69 ****
                                mystatus = status;
                        #if !ECMA_COMPAT
!                               HResult = (int)0x80131509;
                        #endif
                        }
--- 65,69 ----
                                mystatus = status;
                        #if !ECMA_COMPAT
!                               HResult = unchecked((int)0x80131509);
                        #endif
                        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]