~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/gmtime.cc

  • Committer: Mark Atwood
  • Date: 2011-07-07 02:23:49 UTC
  • mfrom: (2318.7.3 refactor18)
  • Revision ID: me@mark.atwood.name-20110707022349-y9xgv0io20t368bd
mergeĀ lp:~olafvdspek/drizzle/refactor19

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
  tmbuf.time_type= type::DRIZZLE_TIMESTAMP_DATETIME;
122
122
}
123
123
 
124
 
void localtime(const type::epoch_t &timer, type::Time &tmbuf)
125
 
{
126
 
  return util::gmtime(timer, tmbuf);
127
 
}
128
 
 
129
 
struct tm *localtime(const type::epoch_t &timer, struct tm *tmbuf)
130
 
{
131
 
  return util::gmtime(timer, tmbuf);
132
 
}
133
 
 
134
124
} /* namespace util */
135
125
} /* namespace drizzled */