diff options
| author | Darryl L. Pierce <mcpierce@apache.org> | 2013-08-12 21:01:42 +0000 |
|---|---|---|
| committer | Darryl L. Pierce <mcpierce@apache.org> | 2013-08-12 21:01:42 +0000 |
| commit | 57f7ef0a6cf49ba5275360b8e114b27034ee1548 (patch) | |
| tree | 3dc2d4e580498100e40e87bdbd6aac15dbd5c62b /cpp/include/qpid | |
| parent | 05b01877adf181cc581e842365bf1976b077e712 (diff) | |
| download | qpid-python-57f7ef0a6cf49ba5275360b8e114b27034ee1548.tar.gz | |
QPID-5067: Fixed an unmatched closing parenthesis.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1513256 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid')
| -rw-r--r-- | cpp/include/qpid/swig_ruby_typemaps.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/qpid/swig_ruby_typemaps.i b/cpp/include/qpid/swig_ruby_typemaps.i index b7befb7291..a3dc3f3f9f 100644 --- a/cpp/include/qpid/swig_ruby_typemaps.i +++ b/cpp/include/qpid/swig_ruby_typemaps.i @@ -32,7 +32,7 @@ case T_FLOAT: return qpid::types::Variant(NUM2DBL(value)); case T_STRING: { qpid::types::Variant v = qpid::types::Variant(); - v = StringValuePtr(value)); + v = StringValuePtr(value); v.setEncoding("utf8"); return v; } |
