aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/auto-descriptor.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-08 13:34:02 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-08 14:46:33 +0200
commitf46601155e09b17576d2ff6272dde5fc3f2d9620 (patch)
tree08788450d4c2921194203b319784d298f64a4aff /odb/oracle/auto-descriptor.hxx
parent072243209fb5a954fa4204e9a0f1d7020747bb05 (diff)
Stylistic changes
Diffstat (limited to 'odb/oracle/auto-descriptor.hxx')
-rw-r--r--odb/oracle/auto-descriptor.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/oracle/auto-descriptor.hxx b/odb/oracle/auto-descriptor.hxx
index ce01c8f..68b0342 100644
--- a/odb/oracle/auto-descriptor.hxx
+++ b/odb/oracle/auto-descriptor.hxx
@@ -49,13 +49,13 @@ namespace odb
// auto_descriptor_base
//
- template <typename D, descriptor_type Type>
+ template <typename D, descriptor_type type>
struct auto_descriptor_base
{
static void
release (D* d)
{
- oci_descriptor_free (d, Type);
+ oci_descriptor_free (d, type);
}
};
@@ -73,8 +73,8 @@ namespace odb
// auto_descriptor
//
- template <typename D, descriptor_type T = dt_default>
- class auto_descriptor: auto_descriptor_base<D, T>
+ template <typename D, descriptor_type type = dt_default>
+ class auto_descriptor: auto_descriptor_base<D, type>
{
public:
auto_descriptor (D* d = 0)