gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog libbase/tu_swap.h


From: Bastiaan Jacques
Subject: [Gnash-commit] gnash ChangeLog libbase/tu_swap.h
Date: Thu, 27 Jul 2006 08:37:45 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Bastiaan Jacques <bjacques>     06/07/27 08:37:45

Modified files:
        .              : ChangeLog 
        libbase        : tu_swap.h 

Log message:
        Undo last commit because it breaks the build for some people.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.534&r2=1.535
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/tu_swap.h?cvsroot=gnash&r1=1.5&r2=1.6

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.534
retrieving revision 1.535
diff -u -b -r1.534 -r1.535
--- ChangeLog   27 Jul 2006 01:47:10 -0000      1.534
+++ ChangeLog   27 Jul 2006 08:37:45 -0000      1.535
@@ -3,7 +3,6 @@
        * all over the place: Facilitate the use of -pedantic in combination
        with -ansi by avoiding non-ISO C++. Avoid extra semicolons. Use the
        `l' instead of the `z' length modifier in printf-style sequences.
-       Don't use the C99 long long modifier in hex constants. 
 
 2006-07-27 Ivor Blockley <address@hidden>
 

Index: libbase/tu_swap.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/tu_swap.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- libbase/tu_swap.h   27 Jul 2006 01:47:11 -0000      1.5
+++ libbase/tu_swap.h   27 Jul 2006 08:37:45 -0000      1.6
@@ -49,17 +49,12 @@
                ((u & 0xFF000000) >> 24);
 }
 
-
 #ifdef swap64
 #undef swap64
 #endif
 inline uint64 swap64(uint64 u)
 {
-#if 0 //__GNUC__
-
-// Since we're now using exclusively C++, these C99 modifiers are no longer
-// necessary.
-
+#ifdef __GNUC__
        return ((u & 0x00000000000000FFLL) << 56) |
                ((u & 0x000000000000FF00LL) << 40)  |
                ((u & 0x0000000000FF0000LL) << 24)  |




reply via email to

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