[webkit-changes] cvs commit: WebCore/kwq KWQDef.h
Geoffrey
ggaren at opensource.apple.com
Tue Jul 5 11:37:33 PDT 2005
ggaren 05/07/05 11:37:32
Modified: . ChangeLog
kwq KWQDef.h
Log:
-rolled out patch for
http://bugzilla.opendarwin.org/show_bug.cgi?id=3826
because it fails to build w/gcc3.3 (previous fix didn't completely work)
* kwq/KWQDef.h:
Revision Changes Path
1.4367 +8 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4366
retrieving revision 1.4367
diff -u -r1.4366 -r1.4367
--- ChangeLog 5 Jul 2005 18:09:35 -0000 1.4366
+++ ChangeLog 5 Jul 2005 18:37:29 -0000 1.4367
@@ -1,5 +1,13 @@
2005-07-05 Geoffrey Garen <ggaren at apple.com>
+ -rolled out patch for
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=3826
+ because it fails to build w/gcc3.3 (previous fix didn't completely work)
+
+ * kwq/KWQDef.h:
+
+2005-07-05 Geoffrey Garen <ggaren at apple.com>
+
-fixed failed build introduced by fix to
http://bugzilla.opendarwin.org/show_bug.cgi?id=3826
1.16 +1 -6 WebCore/kwq/KWQDef.h
Index: KWQDef.h
===================================================================
RCS file: /cvs/root/WebCore/kwq/KWQDef.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- KWQDef.h 5 Jul 2005 18:09:38 -0000 1.15
+++ KWQDef.h 5 Jul 2005 18:37:32 -0000 1.16
@@ -33,9 +33,6 @@
typedef unsigned long ulong;
#endif
-typedef int64_t Q_INT64;
-typedef u_int64_t Q_UINT64;
-
typedef int Q_INT32;
typedef unsigned int Q_UINT32;
@@ -50,8 +47,6 @@
#define QABS(a) (((a) >= 0) ? (a) : -(a))
-inline int qRound(double a) { return lround(a); }
-
#ifndef TRUE
#define TRUE 1
#endif
@@ -64,7 +59,7 @@
void qWarning(const char *msg, ...);
/* Silly hack to avoid "unused parameter" warnings */
-#define Q_UNUSED(x) (void)(x)
+#define Q_UNUSED(x) (x)=(x)
#define Q_ASSERT(arg) do {} while(0)
More information about the webkit-changes
mailing list