~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.cc

  • Committer: Monty Taylor
  • Date: 2009-01-23 06:03:42 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 811.
  • Revision ID: mordred@inaugust.com-20090123060342-i00afsgar78qz3nu
Got rid of __attribute__((unused)) and the like from the .cc files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
719
719
    0
720
720
*/
721
721
time_t
722
 
Time_zone_utc::TIME_to_gmt_sec(const DRIZZLE_TIME *t __attribute__((unused)),
723
 
                               bool *in_dst_time_gap __attribute__((unused))) const
 
722
Time_zone_utc::TIME_to_gmt_sec(const DRIZZLE_TIME *,
 
723
                               bool *) const
724
724
{
725
725
  /* Should be never called */
726
726
  assert(0);
932
932
*/
933
933
time_t
934
934
Time_zone_offset::TIME_to_gmt_sec(const DRIZZLE_TIME *t,
935
 
                                  bool *in_dst_time_gap __attribute__((unused))) const
 
935
                                  bool *) const
936
936
{
937
937
  time_t local_t;
938
938
  int shift= 0;
1164
1164
 
1165
1165
*/
1166
1166
Time_zone *
1167
 
my_tz_find(Session *session __attribute__((unused)),
1168
 
           const String *name __attribute__((unused)))
 
1167
my_tz_find(Session *,
 
1168
           const String *)
1169
1169
{
1170
1170
  return NULL;
1171
1171
}