diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-06-14 19:08:45 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-06-14 19:08:45 +0000 |
| commit | 03118b75fbacc5bd951a313bcce8f74b38fc6236 (patch) | |
| tree | eb88cedb1f833a920da4490a88ba397121503908 /qpid/cpp/include | |
| parent | 910fa709bf7cb4bc9e99bd5a90c9f610a6ecab5b (diff) | |
| download | qpid-python-03118b75fbacc5bd951a313bcce8f74b38fc6236.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@1350376 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/framing/Array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/include/qpid/framing/Array.h b/qpid/cpp/include/qpid/framing/Array.h index 4f82d4dbf0..6254f6271a 100644 --- a/qpid/cpp/include/qpid/framing/Array.h +++ b/qpid/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: |
