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/lazy-pointer-traits.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odb/tr1/lazy-pointer-traits.hxx') 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 > { 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 pointer_type; @@ -42,8 +42,8 @@ namespace odb class pointer_traits > { 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 pointer_type; -- cgit v1.1