diff options
author | Jonathan Robie <jonathan@apache.org> | 2010-03-08 12:47:52 +0000 |
---|---|---|
committer | Jonathan Robie <jonathan@apache.org> | 2010-03-08 12:47:52 +0000 |
commit | 6c17a83d14bdf5fc7b4c7c4cd8293f1da0d3844f (patch) | |
tree | f69832c9f913c2267a00c6d3ae0a7c217bf70ea2 | |
parent | 82e5138dbf07c58944f18cf30824a0996b4d1824 (diff) | |
download | qpid-python-6c17a83d14bdf5fc7b4c7c4cd8293f1da0d3844f.tar.gz |
Fixed #ifndef for XQilla 2.1.3
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@920304 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/qpid/xml/XmlExchange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/xml/XmlExchange.cpp b/cpp/src/qpid/xml/XmlExchange.cpp index 4cc0767377..b62245b6eb 100644 --- a/cpp/src/qpid/xml/XmlExchange.cpp +++ b/cpp/src/qpid/xml/XmlExchange.cpp @@ -184,7 +184,7 @@ bool XmlExchange::matches(Query& query, Deliverable& msg, const qpid::framing::F } Result result = query->execute(context.get()); -#ifndef XQILLA_BEFORE_2_2_3 +#ifndef XQILLA_2_1_3 Item::Ptr first_ = result->next(context.get()); Item::Ptr second_ = result->next(context.get()); return XQEffectiveBooleanValue::get(first_, second_, context.get(), 0); |