aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/query.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/mysql/query.ixx')
-rw-r--r--odb/mysql/query.ixx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/mysql/query.ixx b/odb/mysql/query.ixx
index 9562bd1..ca4c60c 100644
--- a/odb/mysql/query.ixx
+++ b/odb/mysql/query.ixx
@@ -12,8 +12,8 @@ namespace odb
append (val_bind<T> v)
{
add (
- shared_ptr<query_param> (
- new (shared) query_param_impl<T, ID> (v)));
+ details::shared_ptr<query_param> (
+ new (details::shared) query_param_impl<T, ID> (v)));
}
template <typename T, image_id_type ID>
@@ -21,8 +21,8 @@ namespace odb
append (ref_bind<T> r)
{
add (
- shared_ptr<query_param> (
- new (shared) query_param_impl<T, ID> (r)));
+ details::shared_ptr<query_param> (
+ new (details::shared) query_param_impl<T, ID> (r)));
}
}
}