~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/protocol.h

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
  virtual bool store_int64_t(int64_t from, bool unsigned_flag)=0;
86
86
  virtual bool store_decimal(const my_decimal * dec_value)=0;
87
87
  virtual bool store(const char *from, size_t length, const CHARSET_INFO * const cs)=0;
88
 
  virtual bool store(const char *from, size_t length, 
 
88
  virtual bool store(const char *from, size_t length,
89
89
                     const CHARSET_INFO * const fromcs, const CHARSET_INFO * const tocs)=0;
90
90
  virtual bool store(float from, uint32_t decimals, String *buffer)=0;
91
91
  virtual bool store(double from, uint32_t decimals, String *buffer)=0;