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/pointer-traits.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odb/pointer-traits.hxx') diff --git a/odb/pointer-traits.hxx b/odb/pointer-traits.hxx index 22fb0bc..8882309 100644 --- a/odb/pointer-traits.hxx +++ b/odb/pointer-traits.hxx @@ -75,8 +75,8 @@ namespace odb class pointer_traits { public: - static pointer_kind const kind = pk_raw; - static bool const lazy = false; + static const pointer_kind kind = pk_raw; + static const bool lazy = false; typedef T element_type; typedef T* pointer_type; @@ -136,8 +136,8 @@ namespace odb class pointer_traits< std::auto_ptr > { public: - static pointer_kind const kind = pk_unique; - static bool const lazy = false; + static const pointer_kind kind = pk_unique; + static const bool lazy = false; typedef T element_type; typedef std::auto_ptr pointer_type; -- cgit v1.1