From 713b3a62d97c6bea7c23597094af6b2439314b8c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 5 Sep 2011 10:11:28 +0200 Subject: Use more descriptive names in details/meta/ --- odb/details/meta/class-p.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'odb/details/meta/class-p.hxx') diff --git a/odb/details/meta/class-p.hxx b/odb/details/meta/class-p.hxx index fd28b1c..80c1b27 100644 --- a/odb/details/meta/class-p.hxx +++ b/odb/details/meta/class-p.hxx @@ -18,13 +18,14 @@ namespace odb { // g++ cannot have these inside class_p. // - template no class_p_test (...); - template yes class_p_test (void (Y::*) ()); + template no class_p_test (...); + template yes class_p_test (void (X::*) ()); template struct class_p { - static const bool r = sizeof (class_p_test (0)) == sizeof (yes); + static const bool result = + sizeof (class_p_test (0)) == sizeof (yes); }; } } -- cgit v1.1