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

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

[Dotgnu-pnet-commits] CVS: pnetC/libc/ctype ctype.c,1.1,1.2


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetC/libc/ctype ctype.c,1.1,1.2
Date: Mon, 30 Jun 2003 07:41:55 -0400

Update of /cvsroot/dotgnu-pnet/pnetC/libc/ctype
In directory subversions:/tmp/cvs-serv13509/libc/ctype

Modified Files:
        ctype.c 
Log Message:


Replace instances of "__invoke__" with the new "::" syntax.


Index: ctype.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetC/libc/ctype/ctype.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ctype.c     28 Jun 2003 09:53:37 -0000      1.1
--- ctype.c     30 Jun 2003 11:41:52 -0000      1.2
***************
*** 67,72 ****
    if (c >= 0 && c < 65536)
      {
!       return (UnicodeCategory)
!         (__invoke__ Char.GetUnicodeCategory ((__wchar__)c));
      }
    else
--- 67,71 ----
    if (c >= 0 && c < 65536)
      {
!       return (UnicodeCategory)(Char::GetUnicodeCategory ((__wchar__)c));
      }
    else
***************
*** 197,201 ****
    if (c >= 0 && c < 65535)
      {
!       return (int)(__invoke__ Char.ToLower ((__wchar__)c));
      }
    else
--- 196,200 ----
    if (c >= 0 && c < 65535)
      {
!       return (int)(Char::ToLower ((__wchar__)c));
      }
    else
***************
*** 216,220 ****
    if (c >= 0 && c < 65535)
      {
!       return (int)(__invoke__ Char.ToUpper ((__wchar__)c));
      }
    else
--- 215,219 ----
    if (c >= 0 && c < 65535)
      {
!       return (int)(Char::ToUpper ((__wchar__)c));
      }
    else





reply via email to

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