~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.cc

  • Committer: Monty Taylor
  • Date: 2009-05-24 18:17:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1039.
  • Revision ID: mordred@inaugust.com-20090524181738-01rwzxpwrqe92erb
Fixed some no-inline warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
** String functions
36
36
*****************************************************************************/
37
37
 
 
38
String::~String() { free(); }
 
39
 
38
40
bool String::real_alloc(uint32_t arg_length)
39
41
{
40
42
  arg_length=ALIGN_SIZE(arg_length+1);