diff dwt/internal/cocoa/NSInteger.d @ 10:30a762abda2a

Revert automatic changes from dwt/internal and dwt/dwthelper. Excluded dwt/internal/image and theme.
author Frank Benoit <benoit@tionex.de>
date Thu, 28 Aug 2008 12:31:10 +0200
parents e831403a80a9
children 5b53d338c709
line wrap: on
line diff
--- a/dwt/internal/cocoa/NSInteger.d	Wed Aug 27 14:36:41 2008 +0200
+++ b/dwt/internal/cocoa/NSInteger.d	Thu Aug 28 12:31:10 2008 +0200
@@ -7,26 +7,26 @@
  */
 module dwt.internal.cocoa.NSInteger;
 
-version cast(X86_64) {
+version (X86_64) {
     alias ulong NSUInteger;
     alias long NSInteger;
 }
 
-else version cast(PPC64) {
+else version (PPC64) {
     alias ulong NSUInteger;
     alias long NSInteger;
 }
 
-else version cast(X86) {
+else version (X86) {
     alias uint NSUInteger;
     alias int NSInteger;
 }
 
-else version cast(PPC) {
+else version (PPC) {
     alias uint NSUInteger;
     alias int NSInteger;
 }
 
 else {
     pragma(error, "Unsupported architecture");
-}
+}
\ No newline at end of file