~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Monty Taylor
  • Date: 2010-10-30 01:19:00 UTC
  • mto: (1892.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1893.
  • Revision ID: mordred@inaugust.com-20101030011900-2tdt8w9vt7a6pbk0
Fixed things to make things compile with clang

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
 
179
179
  Status(int in_exit_status, 
180
180
         uint32_t in_query_start_line,
181
 
         char *in_file_name,
 
181
         char *in_file_name,
182
182
         LineBuffer *in_line_buff,
183
 
         bool in_batch,
184
 
         bool in_add_to_history)
 
183
         bool in_batch,
 
184
         bool in_add_to_history)
185
185
    :
186
186
    exit_status(in_exit_status),
187
187
    query_start_line(in_query_start_line),
191
191
    add_to_history(in_add_to_history)
192
192
    {}
193
193
 
194
 
  Status()
195
 
    :
196
 
    exit_status(),
197
 
    query_start_line(),
198
 
    file_name(),
199
 
    line_buff(),
200
 
    batch(),        
201
 
    add_to_history()
202
 
    {}
 
194
  Status() :
 
195
    exit_status(0),
 
196
    query_start_line(0),
 
197
    file_name(NULL),
 
198
    line_buff(NULL),
 
199
    batch(false),        
 
200
    add_to_history(false)
 
201
  {}
203
202
  
204
203
  int getExitStatus() const
205
204
  {