~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: Lee Bieber
  • Date: 2010-10-30 02:15:22 UTC
  • mfrom: (1891.2.1 clang)
  • mto: This revision was merged to the branch mainline in revision 1893.
  • Revision ID: kalebral@gmail.com-20101030021522-tel18euhugpao68b
Merge Monty - Fix a bunch of warnings and errors from clang build.

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
  {