diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-02-26 17:21:31 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-02-26 17:21:31 +0000 |
| commit | bbdd8968d545d05c4a777c93d8f7b52e0aa87f87 (patch) | |
| tree | e6d6a23f385afc18ef99a842309466bb4802876b /qpid/cpp/src/tests/qpid-send.cpp | |
| parent | c1a3d6e2927975d83f683334360f613b9fb44189 (diff) | |
| download | qpid-python-bbdd8968d545d05c4a777c93d8f7b52e0aa87f87.tar.gz | |
QPID-4603: Teach qpid-send to send bool/int/float properties as well as strings
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1450289 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/qpid-send.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/qpid-send.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/qpid-send.cpp b/qpid/cpp/src/tests/qpid-send.cpp index b1c4f2be38..c3bba31e3b 100644 --- a/qpid/cpp/src/tests/qpid-send.cpp +++ b/qpid/cpp/src/tests/qpid-send.cpp @@ -200,7 +200,7 @@ struct Options : public qpid::Options std::string name; std::string value; if (nameval(property, name, value)) { - message.getProperties()[name] = value; + message.getProperties()[name].parse(value); } else { message.getProperties()[name] = Variant(); } |
