aboutsummaryrefslogtreecommitdiff
path: root/odb/details
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-04-19 14:21:05 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-04-22 14:27:32 +0200
commit21e9146eb9e093d940d95799e365a55f83ac8954 (patch)
tree8042180df8b2efc90508c79ce99a9d17dc67dc4b /odb/details
parentb2b8dba6c149407d6657398a874c75629871d21a (diff)
Refactor such that const keyword always precedes type that it qualifies
Diffstat (limited to 'odb/details')
-rw-r--r--odb/details/meta/class-p.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/details/meta/class-p.hxx b/odb/details/meta/class-p.hxx
index 1ce6c0d..fd28b1c 100644
--- a/odb/details/meta/class-p.hxx
+++ b/odb/details/meta/class-p.hxx
@@ -24,7 +24,7 @@ namespace odb
template <typename X>
struct class_p
{
- static bool const r = sizeof (class_p_test<X> (0)) == sizeof (yes);
+ static const bool r = sizeof (class_p_test<X> (0)) == sizeof (yes);
};
}
}