mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
cleanup String::set(integer)
This commit is contained in:
@ -139,8 +139,11 @@ public:
|
||||
}
|
||||
str_charset=cs;
|
||||
}
|
||||
bool set(longlong num, CHARSET_INFO *cs);
|
||||
bool set(ulonglong num, CHARSET_INFO *cs);
|
||||
bool set(longlong num, bool unsigned_flag, CHARSET_INFO *cs);
|
||||
bool set(longlong num, CHARSET_INFO *cs)
|
||||
{ return set(num, false, cs); }
|
||||
bool set(ulonglong num, CHARSET_INFO *cs)
|
||||
{ return set((longlong)num, true, cs); }
|
||||
bool set(double num,uint decimals, CHARSET_INFO *cs);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user