diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2008-08-19 19:37:09 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2008-08-19 19:37:09 +0000 |
| commit | 586c92c87913276f5eb1083d01a363b032a9af48 (patch) | |
| tree | 1049ef0000b30d492fa3bb186af23a255596131b /cpp/src/qpid | |
| parent | b1bf708541b483f509e041cf8483d894119aab84 (diff) | |
| download | qpid-python-586c92c87913276f5eb1083d01a363b032a9af48.tar.gz | |
Missing DTX recover code for --dtx mode in txtest
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-10@687138 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
| -rw-r--r-- | cpp/src/qpid/framing/Array.h | 2 |
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>()); |
