Below is the list of changes that have just been committed into a local
4.1 repository of joerg. When joerg does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet
1.2067 04/10/08 15:00:36 joerg@stripped +1 -0
Solve compile problem - use system types like 'size_t'.
sql/sql_class.cc
1.189 04/10/08 15:00:05 joerg@stripped +1 -1
'new' does not accept 'unsigned int' on several platforms but
requires 'size_t' (this can be 'unsigned long'!).
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: joerg
# Host: trift2.
# Root: /M41/mysql-4.1
--- 1.188/sql/sql_class.cc Fri Oct 8 00:22:37 2004
+++ 1.189/sql/sql_class.cc Fri Oct 8 15:00:05 2004
@@ -702,7 +702,7 @@
Item **place;
Item *old_value;
/* Placement new was hidden by `new' in ilink (TODO: check): */
- static void *operator new(unsigned int size, void *mem) { return mem; }
+ static void *operator new(size_t size, void *mem) { return mem; }
};
| Thread |
|---|
| • bk commit into 4.1 tree (joerg:1.2067) | Joerg Bruehe | 8 Oct |