diff options
author | unknown <lenz@kallisto.local> | 2003-10-16 22:15:46 +0200 |
---|---|---|
committer | unknown <lenz@kallisto.local> | 2003-10-16 22:15:46 +0200 |
commit | d894f23372ad7abd1efd108562574b4d15dd0709 (patch) | |
tree | dc22b28e166bb951f4d790cc357f5c41bdd2e7dc /sql | |
parent | 0d28ff8473f0c1c7159d777a3af088bf8ea03ea5 (diff) | |
download | mariadb-git-d894f23372ad7abd1efd108562574b4d15dd0709.tar.gz |
- portability fix: fix compile bug on HP-UX (thanks to acurtis for the
patch)
(BUG#1440: Redundant class name confusing hpux compiler)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index a126a61e32e..517d3f311e5 100644 --- a/sql/item.h +++ b/sql/item.h @@ -322,7 +322,7 @@ public: bool long_data_supplied; uint pos_in_query; - Item_param::Item_param(uint position) + Item_param(uint position) { name= (char*) "?"; pos_in_query= position; |