diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-09-28 10:29:43 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-09-28 10:29:43 (GMT) |
commit | fe4dc49c8f4f201f7286027adb2ba21ffebc14cc (patch) | |
tree | 20c000b569f057b23a9b371af6eb2075000c0ba4 | |
parent | 075f157eee733d89a492f34a07787944ce55b7aa (diff) | |
download | Qt-fe4dc49c8f4f201f7286027adb2ba21ffebc14cc.zip Qt-fe4dc49c8f4f201f7286027adb2ba21ffebc14cc.tar.gz Qt-fe4dc49c8f4f201f7286027adb2ba21ffebc14cc.tar.bz2 |
Fixed qsharedpointer auto test build break for Symbian OS.
RVCT has problems with scoping, the similar workaround has been used
in qhash.h also.
Reviewed-by: Janne Koskinen
-rw-r--r-- | src/corelib/tools/qsharedpointer_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qsharedpointer_impl.h b/src/corelib/tools/qsharedpointer_impl.h index 4f05eda..2acbf17 100644 --- a/src/corelib/tools/qsharedpointer_impl.h +++ b/src/corelib/tools/qsharedpointer_impl.h @@ -478,7 +478,7 @@ public: { BaseClass::internalSet(other.d, other.value); return *this; } inline void swap(QSharedPointer &other) - { internalSwap(other); } + { QSharedPointer<T>::internalSwap(other); } template <class X> QSharedPointer<X> staticCast() const |