aboutsummaryrefslogtreecommitdiff
path: root/odb/lazy-pointer-traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/lazy-pointer-traits.hxx')
-rw-r--r--odb/lazy-pointer-traits.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/lazy-pointer-traits.hxx b/odb/lazy-pointer-traits.hxx
index 2f99bfa..70a36d0 100644
--- a/odb/lazy-pointer-traits.hxx
+++ b/odb/lazy-pointer-traits.hxx
@@ -17,8 +17,8 @@ namespace odb
class pointer_traits< lazy_ptr<T> >
{
public:
- static pointer_kind const kind = pk_raw;
- static bool const lazy = true;
+ static const pointer_kind kind = pk_raw;
+ static const bool lazy = true;
typedef T element_type;
typedef lazy_ptr<element_type> pointer_type;
@@ -42,8 +42,8 @@ namespace odb
class pointer_traits< lazy_auto_ptr<T> >
{
public:
- static pointer_kind const kind = pk_unique;
- static bool const lazy = true;
+ static const pointer_kind kind = pk_unique;
+ static const bool lazy = true;
typedef T element_type;
typedef lazy_auto_ptr<element_type> pointer_type;