~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_locale.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:
30
30
  TYPELIB *ab_month_names;
31
31
  TYPELIB *day_names;
32
32
  TYPELIB *ab_day_names;
33
 
#ifdef __cplusplus 
 
33
#ifdef __cplusplus
34
34
  my_locale_st(uint32_t number_par,
35
35
               const char *name_par, const char *descr_par, bool is_ascii_par,
36
36
               TYPELIB *month_names_par, TYPELIB *ab_month_names_par,
37
 
               TYPELIB *day_names_par, TYPELIB *ab_day_names_par) : 
 
37
               TYPELIB *day_names_par, TYPELIB *ab_day_names_par) :
38
38
    number(number_par),
39
39
    name(name_par), description(descr_par), is_ascii(is_ascii_par),
40
40
    month_names(month_names_par), ab_month_names(ab_month_names_par),