summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-02 14:53:49 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-02 14:53:49 +0000
commit3dd2d61c1bfc16f5e06667fde961068af2d23ca1 (patch)
tree7e6ca7c015e4dbcbde4c987cd9e6d621ec788336 /lotuswordpro
parentefdea8ff0e72b7985585450c1eefd6fbe4407059 (diff)
be more explicit as to which 'detail' is desired
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/clone.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/clone.hxx b/lotuswordpro/source/filter/clone.hxx
index a210a8308184..35a4cd4a67eb 100644
--- a/lotuswordpro/source/filter/clone.hxx
+++ b/lotuswordpro/source/filter/clone.hxx
@@ -76,7 +76,7 @@ struct cloner<T, true>
template<typename T>
T* clone(T* const other)
{
- return other ? detail::cloner<T, detail::has_clone<T>::value>::clone(other) : 0;
+ return other ? ::detail::cloner<T, ::detail::has_clone<T>::value>::clone(other) : 0;
}
// vim: set sts=4 sw=4 et: