diff options
author | unknown <serg@serg.mysql.com> | 2003-01-22 15:05:37 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2003-01-22 15:05:37 +0100 |
commit | 2988923a4cbba69d9fb4bc1f875ea99c56e1c658 (patch) | |
tree | b63ae8644ed2943e9cc697e62be2d32e49793075 /sql/protocol.cc | |
parent | be36a5c916a1a77c0903183464dbaab25f5cb53b (diff) | |
download | mariadb-git-2988923a4cbba69d9fb4bc1f875ea99c56e1c658.tar.gz |
workaround for gcc bug
Diffstat (limited to 'sql/protocol.cc')
-rw-r--r-- | sql/protocol.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/protocol.cc b/sql/protocol.cc index d0d6a75214b..adb925a8cd4 100644 --- a/sql/protocol.cc +++ b/sql/protocol.cc @@ -40,7 +40,7 @@ bool Protocol::net_store_data(const char *from, uint length) return 0; } -inline bool Protocol::convert_str(const char *from, uint length) +bool Protocol::convert_str(const char *from, uint length) { convert->store(packet, from, length); } |