summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2007-09-24 18:52:43 +1000
committerMichi Henning <michi@zeroc.com>2007-09-24 18:52:43 +1000
commitb59761140b3d8f0150c047c35e8e602207241f4c (patch)
tree4d8fe3c4291db4554b39c101857b11b828a4f1e5 /cpp
parentIce.Admin.DelayCreation fixes (diff)
downloadice-b59761140b3d8f0150c047c35e8e602207241f4c.tar.bz2
ice-b59761140b3d8f0150c047c35e8e602207241f4c.tar.xz
ice-b59761140b3d8f0150c047c35e8e602207241f4c.zip
Remove unused local variables.
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/src/slice2cs/Gen.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp
index 31a6d8fb22d..6f234bf39fc 100755
--- a/cpp/src/slice2cs/Gen.cpp
+++ b/cpp/src/slice2cs/Gen.cpp
@@ -1558,7 +1558,6 @@ Slice::Gen::TypesVisitor::visitSequence(const SequencePtr& p)
string name = fixId(p->name());
string s = typeToString(p->type());
- bool isValue = isValueType(p->type());
_out << sp;
@@ -2418,7 +2417,6 @@ Slice::Gen::TypesVisitor::visitDictionary(const DictionaryPtr& p)
string name = fixId(p->name());
string ks = typeToString(p->keyType());
string vs = typeToString(p->valueType());
- bool valueIsValue = isValueType(p->valueType());
_out << sp;