aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@digia.com>2013-04-17 14:36:46 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-04-17 15:37:51 +0200
commitb30e3579bca8949f189827ab674efd0599209765 (patch)
treea5ff26e0389ef8caa5164168ec319f3b0387a41c /src/3rdparty
parent25c332c00e636403b7600e3ac7110cde8d0fab7f (diff)
Use 'template' keyword to treat 'vector' as a dependent template name
Change-Id: I736c0ef531eb302276dc763584da75e44579e643 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/masm/stubs/wtf/Vector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/masm/stubs/wtf/Vector.h b/src/3rdparty/masm/stubs/wtf/Vector.h
index 1fa2b58eec..a32df4f9ad 100644
--- a/src/3rdparty/masm/stubs/wtf/Vector.h
+++ b/src/3rdparty/masm/stubs/wtf/Vector.h
@@ -70,7 +70,7 @@ public:
inline void append(const Vector<T>& vector)
{
- this->insert(this->std::vector<T>::end(), vector.std::vector<T>::begin(), vector.std::vector<T>::end());
+ this->insert(this->std::vector<T>::end(), vector.std::template vector<T>::begin(), vector.std::template vector<T>::end());
}
inline void append(const T* ptr, size_t count)