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.Xml XmlException.cs,1.7,1.8


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

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

Modified Files:
        XmlException.cs 
Log Message:


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


Index: XmlException.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Xml/XmlException.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** XmlException.cs     26 May 2003 04:41:20 -0000      1.7
--- XmlException.cs     5 Jul 2003 05:07:10 -0000       1.8
***************
*** 37,41 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131940;
                #endif
                }
--- 37,41 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131940);
                #endif
                }
***************
*** 44,48 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131940;
                #endif
                }
--- 44,48 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131940);
                #endif
                }
***************
*** 51,55 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131940;
                #endif
                }
--- 51,55 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131940);
                #endif
                }
***************
*** 59,63 ****
                {
                #if !ECMA_COMPAT
!                       HResult = (int)0x80131940;
                #endif
                        this.lineNumber = lineNumber;
--- 59,63 ----
                {
                #if !ECMA_COMPAT
!                       HResult = unchecked((int)0x80131940);
                #endif
                        this.lineNumber = lineNumber;
***************
*** 68,72 ****
                : base(info, context)
                {
!                       HResult = (int)0x80131940;
                        lineNumber = info.GetInt32("lineNumber");
                        linePosition = info.GetInt32("linePosition");
--- 68,72 ----
                : base(info, context)
                {
!                       HResult = unchecked((int)0x80131940);
                        lineNumber = info.GetInt32("lineNumber");
                        linePosition = info.GetInt32("linePosition");





reply via email to

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