~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/tztime.cc

  • Committer: Brian Aker
  • Date: 2008-07-26 18:39:33 UTC
  • mfrom: (212.1.3 codestyle)
  • Revision ID: brian@tangent.org-20080726183933-hueup0fcy2zs1hug
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
725
725
    0
726
726
*/
727
727
my_time_t
728
 
Time_zone_utc::TIME_to_gmt_sec(const MYSQL_TIME *t __attribute__((__unused__)),
729
 
                               bool *in_dst_time_gap __attribute__((__unused__))) const
 
728
Time_zone_utc::TIME_to_gmt_sec(const MYSQL_TIME *t __attribute__((unused)),
 
729
                               bool *in_dst_time_gap __attribute__((unused))) const
730
730
{
731
731
  /* Should be never called */
732
732
  assert(0);
938
938
*/
939
939
my_time_t
940
940
Time_zone_offset::TIME_to_gmt_sec(const MYSQL_TIME *t,
941
 
                                  bool *in_dst_time_gap __attribute__((__unused__))) const
 
941
                                  bool *in_dst_time_gap __attribute__((unused))) const
942
942
{
943
943
  my_time_t local_t;
944
944
  int shift= 0;
1052
1052
*/
1053
1053
bool
1054
1054
my_tz_init(THD *thd, const char *default_tzname,
1055
 
           bool bootstrap __attribute__((__unused__)))
 
1055
           bool bootstrap __attribute__((unused)))
1056
1056
{
1057
1057
  if (default_tzname)
1058
1058
  {
1170
1170
 
1171
1171
*/
1172
1172
Time_zone *
1173
 
my_tz_find(THD *thd __attribute__((__unused__)),
1174
 
           const String *name __attribute__((__unused__)))
 
1173
my_tz_find(THD *thd __attribute__((unused)),
 
1174
           const String *name __attribute__((unused)))
1175
1175
{
1176
1176
  return NULL;
1177
1177
}