mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Lots of manual changes
Changed 'static inline' to 'inline' for SCO new's compiler Docs/manual.texi: Lots of changes in "Debugging a MySQL server" and in Log files handling mysys/hash.c: Changed 'static inline' to 'inline' sql/hostname.cc: Changed 'static inline' to 'inline' sql/item.cc: Changed 'static inline' to 'inline' sql/net_serv.cc: Changed 'static inline' to 'inline' sql/password.c: Changed 'static inline' to 'inline' sql/slave.cc: Changed 'static inline' to 'inline' sql/sql_acl.cc: Changed 'static inline' to 'inline' sql/sql_base.cc: Changed mysql_list_field() to convert field names again sql/sql_parse.cc: Changed 'static inline' to 'inline' sql/sql_repl.cc: fixed typo
This commit is contained in:
parent
060cd1a137
commit
c6a67ce9dc
11 changed files with 469 additions and 291 deletions
|
|
@ -471,7 +471,7 @@ bool Item_real::save_in_field(Field *field)
|
|||
** In number context this is a longlong value.
|
||||
****************************************************************************/
|
||||
|
||||
static inline uint char_val(char X)
|
||||
inline uint char_val(char X)
|
||||
{
|
||||
return (uint) (X >= '0' && X <= '9' ? X-'0' :
|
||||
X >= 'A' && X <= 'Z' ? X-'A'+10 :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue