diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-02 14:53:49 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-02 14:53:49 +0000 |
commit | 3dd2d61c1bfc16f5e06667fde961068af2d23ca1 (patch) | |
tree | 7e6ca7c015e4dbcbde4c987cd9e6d621ec788336 /lotuswordpro | |
parent | efdea8ff0e72b7985585450c1eefd6fbe4407059 (diff) |
be more explicit as to which 'detail' is desired
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/clone.hxx | 2 |
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: |