summaryrefslogtreecommitdiff
path: root/odb/mysql/header.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/mysql/header.cxx')
-rw-r--r--odb/mysql/header.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/odb/mysql/header.cxx b/odb/mysql/header.cxx
index 97df10c..b22efbb 100644
--- a/odb/mysql/header.cxx
+++ b/odb/mysql/header.cxx
@@ -28,7 +28,7 @@ namespace mysql
}
virtual void
- traverse_integer (type&, sql_type const& t)
+ traverse_integer (type&, sql_type const&)
{
os << image_type << " " << var << "value;"
<< "my_bool " << var << "null;"
@@ -36,7 +36,7 @@ namespace mysql
}
virtual void
- traverse_float (type&, sql_type const& t)
+ traverse_float (type&, sql_type const&)
{
os << image_type << " " << var << "value;"
<< "my_bool " << var << "null;"
@@ -44,7 +44,7 @@ namespace mysql
}
virtual void
- traverse_decimal (type&, sql_type const& t)
+ traverse_decimal (type&, sql_type const&)
{
// Exchanged as strings. Can have up to 65 digits not counting
// '-' and '.'. If range is not specified, the default is 10.
@@ -63,7 +63,7 @@ namespace mysql
}
virtual void
- traverse_date_time (type&, sql_type const& t)
+ traverse_date_time (type&, sql_type const&)
{
os << image_type << " " << var << "value;"
<< "my_bool " << var << "null;"
@@ -72,7 +72,7 @@ namespace mysql
}
virtual void
- traverse_short_string (type&, sql_type const& t)
+ traverse_short_string (type&, sql_type const&)
{
// If range is not specified, the default buffer size is 255.
//
@@ -89,7 +89,7 @@ namespace mysql
}
virtual void
- traverse_long_string (type&, sql_type const& t)
+ traverse_long_string (type&, sql_type const&)
{
os << image_type << " " << var << "value;"
<< "unsigned long " << var << "size;"