diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-11 16:16:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-02-11 16:16:03 +0200 |
commit | 928376e3396addc09576276c3c7e97614665e9ea (patch) | |
tree | a5d13e2bbb466c76c1957c9c3ee4eeba555cd91e | |
parent | f0f3a9c838acbef3131633bd2fd3f1e0571a9f3e (diff) |
Fix name qualification
-rw-r--r-- | common/bulk/driver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bulk/driver.cxx b/common/bulk/driver.cxx index a6ae973..06bd06c 100644 --- a/common/bulk/driver.cxx +++ b/common/bulk/driver.cxx @@ -32,7 +32,7 @@ template <typename I, #ifndef _RWSTD_NO_CLASS_PARTIAL_SPEC typename T = typename iterator_traits<I>::value_type #else - typename T = typename details::meta::remove_pointer<I>::result + typename T = typename odb::details::meta::remove_pointer<I>::result #endif > struct element_traits; |