summaryrefslogtreecommitdiff
path: root/cpp/include
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-06-14 19:08:45 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-06-14 19:08:45 +0000
commitbeb2cdc49e4a621fc246a5509ee0d3421272ba78 (patch)
tree8e0eca537bfd4fe9d5fa26e31e92902181d03939 /cpp/include
parentf91d540f7d2a0e0c19b4b8462dbaa036a28bfc38 (diff)
downloadqpid-python-beb2cdc49e4a621fc246a5509ee0d3421272ba78.tar.gz
NO-JIRA: Correct template to be strictly standards comformant (work with clang 3.1 & probably gcc 4.7)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1350376 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
-rw-r--r--cpp/include/qpid/framing/Array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/qpid/framing/Array.h b/cpp/include/qpid/framing/Array.h
index 4f82d4dbf0..6254f6271a 100644
--- a/cpp/include/qpid/framing/Array.h
+++ b/cpp/include/qpid/framing/Array.h
@@ -82,7 +82,7 @@ class QPID_COMMON_CLASS_EXTERN Array
// For use in standard algorithms
template <typename R, typename V>
static R get(const V& v) {
- return v->get<R>();
+ return v->template get<R>();
}
private: