summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
authorunknown <kroki@mysql.com>2006-05-15 18:18:37 +0400
committerunknown <kroki@mysql.com>2006-05-15 18:18:37 +0400
commit90ffe5392ac7d697238d4269cbf2f7cd0b269868 (patch)
tree543070a3d512c8903c71cf2f8465336161f6e31d /sql/item.h
parentf298905dbef72c94f5c91e46d517864108bf4134 (diff)
downloadmariadb-git-90ffe5392ac7d697238d4269cbf2f7cd0b269868.tar.gz
Remove 'const' that prevents Microsoft VC realize that
Item_trigger_field::set_required_privilege(const bool rw) is an overloading of Settable_routine_parameter::set_required_privilege(bool rw).
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h
index 617690e1fd9..ee8ac829515 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -2187,7 +2187,7 @@ public:
void cleanup();
private:
- void set_required_privilege(const bool rw);
+ void set_required_privilege(bool rw);
bool set_value(THD *thd, sp_rcontext *ctx, Item *it);
public: