diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2008-08-19 19:37:39 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2008-08-19 19:37:39 +0000 |
| commit | b54acd8085468ca4417bf9df670fb33e7141b834 (patch) | |
| tree | def4ec8ddca4e8157c0a7d754371f239c9557f91 /cpp/src/qpid | |
| parent | ba957465d546e55a644d6e05c6d172737575d052 (diff) | |
| download | qpid-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')
| -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>()); |
