aboutsummaryrefslogtreecommitdiff
path: root/odb/tr1
diff options
context:
space:
mode:
Diffstat (limited to 'odb/tr1')
-rw-r--r--odb/tr1/lazy-pointer-traits.hxx8
-rw-r--r--odb/tr1/pointer-traits.hxx8
2 files changed, 8 insertions, 8 deletions
diff --git a/odb/tr1/lazy-pointer-traits.hxx b/odb/tr1/lazy-pointer-traits.hxx
index bdbfbfe..4e29abd 100644
--- a/odb/tr1/lazy-pointer-traits.hxx
+++ b/odb/tr1/lazy-pointer-traits.hxx
@@ -17,8 +17,8 @@ namespace odb
class pointer_traits<tr1::lazy_shared_ptr<T> >
{
public:
- static pointer_kind const kind = pk_shared;
- static bool const lazy = true;
+ static const pointer_kind kind = pk_shared;
+ static const bool lazy = true;
typedef T element_type;
typedef tr1::lazy_shared_ptr<element_type> pointer_type;
@@ -42,8 +42,8 @@ namespace odb
class pointer_traits<tr1::lazy_weak_ptr<T> >
{
public:
- static pointer_kind const kind = pk_weak;
- static bool const lazy = true;
+ static const pointer_kind kind = pk_weak;
+ static const bool lazy = true;
typedef T element_type;
typedef tr1::lazy_weak_ptr<element_type> pointer_type;
diff --git a/odb/tr1/pointer-traits.hxx b/odb/tr1/pointer-traits.hxx
index 431685e..80f6419 100644
--- a/odb/tr1/pointer-traits.hxx
+++ b/odb/tr1/pointer-traits.hxx
@@ -23,8 +23,8 @@ namespace odb
class pointer_traits<std::tr1::shared_ptr<T> >
{
public:
- static pointer_kind const kind = pk_shared;
- static bool const lazy = false;
+ static const pointer_kind kind = pk_shared;
+ static const bool lazy = false;
typedef T element_type;
typedef std::tr1::shared_ptr<element_type> pointer_type;
@@ -69,8 +69,8 @@ namespace odb
class pointer_traits<std::tr1::weak_ptr<T> >
{
public:
- static pointer_kind const kind = pk_weak;
- static bool const lazy = false;
+ static const pointer_kind kind = pk_weak;
+ static const bool lazy = false;
typedef T element_type;
typedef std::tr1::weak_ptr<element_type> pointer_type;