aboutsummaryrefslogtreecommitdiff
path: root/odb/database.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/database.ixx')
-rw-r--r--odb/database.ixx18
1 files changed, 9 insertions, 9 deletions
diff --git a/odb/database.ixx b/odb/database.ixx
index dbdcaec..c4b3c77 100644
--- a/odb/database.ixx
+++ b/odb/database.ixx
@@ -200,33 +200,33 @@ namespace odb
inline result<T> database::
query (bool cache)
{
- // T can be const T while object_type will always be T.
+ // T can be const T.
//
- typedef typename odb::object_traits<T>::object_type object_type;
+ typedef typename details::meta::remove_const<T>::result type;
- return query<T> (odb::query<object_type> (), cache);
+ return query<T> (odb::query<type> (), cache);
}
template <typename T>
inline result<T> database::
query (const char* q, bool cache)
{
- // T can be const T while object_type will always be T.
+ // T can be const T.
//
- typedef typename odb::object_traits<T>::object_type object_type;
+ typedef typename details::meta::remove_const<T>::result type;
- return query<T> (odb::query<object_type> (q), cache);
+ return query<T> (odb::query<type> (q), cache);
}
template <typename T>
inline result<T> database::
query (const std::string& q, bool cache)
{
- // T can be const T while object_type will always be T.
+ // T can be const T.
//
- typedef typename odb::object_traits<T>::object_type object_type;
+ typedef typename details::meta::remove_const<T>::result type;
- return query<T> (odb::query<object_type> (q), cache);
+ return query<T> (odb::query<type> (q), cache);
}
inline unsigned long long database::