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