aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/query.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:03:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:03:19 +0200
commit4c8de7a0e8fa65d60b4b54d525c0b5ba43ac265a (patch)
tree84de015adcdd750fe7a3cf417ac856329a623ec1 /odb/mysql/query.ixx
parent35d912d70bc7073f173f22bb5948a00b3c4be3f8 (diff)
Move shared_ptr to the details namespace
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)));
}
}
}