~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Monty Taylor
  • Date: 2008-09-22 23:10:15 UTC
  • mto: This revision was merged to the branch mainline in revision 417.
  • Revision ID: monty@inaugust.com-20080922231015-opvz2pv1hs340y2f
Remove typedef enum enum_drizzle_timestamp_type timestamp_type;

Show diffs side-by-side

added added

removed removed

Lines of Context:
823
823
class sys_var_thd_date_time_format :public sys_var_thd
824
824
{
825
825
  DATE_TIME_FORMAT *SV::*offset;
826
 
  timestamp_type date_time_type;
 
826
  enum enum_drizzle_timestamp_type date_time_type;
827
827
public:
828
828
  sys_var_thd_date_time_format(sys_var_chain *chain, const char *name_arg,
829
829
                               DATE_TIME_FORMAT *SV::*offset_arg,
830
 
                               timestamp_type date_time_type_arg)
 
830
                               enum enum_drizzle_timestamp_type date_time_type_arg)
831
831
    :sys_var_thd(name_arg), offset(offset_arg),
832
832
    date_time_type(date_time_type_arg)
833
833
  { chain_sys_var(chain); }