diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-04-22 16:11:34 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-04-22 16:11:34 +0000 |
commit | e06aa805cfe24b8edf619a6a535883f94589ac35 (patch) | |
tree | 4b886461816ca97127aae8a9639ddad74d77bd46 /cpp/src/qpid/framing/FieldTable.cpp | |
parent | 61959e29ee69f9cebb61b845272eededaec6f11e (diff) | |
download | qpid-python-e06aa805cfe24b8edf619a6a535883f94589ac35.tar.gz |
QPID-947: update cpp and python management to 0-10 final
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@650565 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/FieldTable.cpp')
-rw-r--r-- | cpp/src/qpid/framing/FieldTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/FieldTable.cpp b/cpp/src/qpid/framing/FieldTable.cpp index 089bc5d4a5..ac2a0f286d 100644 --- a/cpp/src/qpid/framing/FieldTable.cpp +++ b/cpp/src/qpid/framing/FieldTable.cpp @@ -66,7 +66,7 @@ void FieldTable::set(const std::string& name, const ValuePtr& value){ } void FieldTable::setString(const std::string& name, const std::string& value){ - values[name] = ValuePtr(new StringValue(value)); + values[name] = ValuePtr(new Str16Value(value)); } void FieldTable::setInt(const std::string& name, int value){ |