summaryrefslogtreecommitdiff
path: root/odb/pgsql/query-dynamic.txx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/pgsql/query-dynamic.txx')
-rw-r--r--odb/pgsql/query-dynamic.txx20
1 files changed, 0 insertions, 20 deletions
diff --git a/odb/pgsql/query-dynamic.txx b/odb/pgsql/query-dynamic.txx
deleted file mode 100644
index 7cfaf63..0000000
--- a/odb/pgsql/query-dynamic.txx
+++ /dev/null
@@ -1,20 +0,0 @@
-// file : odb/pgsql/query-dynamic.txx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-namespace odb
-{
- namespace pgsql
- {
- template <typename T, database_type_id ID>
- details::shared_ptr<query_param>
- query_param_factory_impl (const void* val, bool by_ref)
- {
- const T& v (*static_cast<const T*> (val));
-
- return details::shared_ptr<query_param> (
- by_ref
- ? new (details::shared) query_param_impl<T, ID> (ref_bind<T> (v))
- : new (details::shared) query_param_impl<T, ID> (val_bind<T> (v)));
- }
- }
-}