From 21e9146eb9e093d940d95799e365a55f83ac8954 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Tue, 19 Apr 2011 14:21:05 +0200 Subject: Refactor such that const keyword always precedes type that it qualifies --- odb/tr1/pointer-traits.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odb/tr1/pointer-traits.hxx') 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 > { 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 pointer_type; @@ -69,8 +69,8 @@ namespace odb class pointer_traits > { 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 pointer_type; -- cgit v1.1