summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <lenz@kallisto.local>2003-10-16 22:15:46 +0200
committerunknown <lenz@kallisto.local>2003-10-16 22:15:46 +0200
commitd894f23372ad7abd1efd108562574b4d15dd0709 (patch)
treedc22b28e166bb951f4d790cc357f5c41bdd2e7dc /sql
parent0d28ff8473f0c1c7159d777a3af088bf8ea03ea5 (diff)
downloadmariadb-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.h2
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;