summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing/Array.h
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2008-08-19 19:37:39 +0000
committerKim van der Riet <kpvdr@apache.org>2008-08-19 19:37:39 +0000
commitb54acd8085468ca4417bf9df670fb33e7141b834 (patch)
treedef4ec8ddca4e8157c0a7d754371f239c9557f91 /cpp/src/qpid/framing/Array.h
parentba957465d546e55a644d6e05c6d172737575d052 (diff)
downloadqpid-python-b54acd8085468ca4417bf9df670fb33e7141b834.tar.gz
Missing DTX recover code for --dtx mode in txtest
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@687140 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/Array.h')
-rw-r--r--cpp/src/qpid/framing/Array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/Array.h b/cpp/src/qpid/framing/Array.h
index 1367a023f2..2cbd4c0b29 100644
--- a/cpp/src/qpid/framing/Array.h
+++ b/cpp/src/qpid/framing/Array.h
@@ -54,7 +54,7 @@ class Array
void add(ValuePtr value);
template <class T>
- void collect(std::vector<T>& out)
+ void collect(std::vector<T>& out) const
{
for (ValueVector::const_iterator i = values.begin(); i != values.end(); ++i) {
out.push_back((*i)->get<T>());