diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-12-07 16:20:24 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-12-07 16:20:24 -0330 |
commit | fa0e5c728be29c470573413f1ba4cfe71a3fa03d (patch) | |
tree | a0493a8fef21902f320ceb5415a2c9fe77fca997 /cpp/src | |
parent | 4413 - .NET Do not cast unnecessarily. (diff) | |
download | ice-fa0e5c728be29c470573413f1ba4cfe71a3fa03d.tar.bz2 ice-fa0e5c728be29c470573413f1ba4cfe71a3fa03d.tar.xz ice-fa0e5c728be29c470573413f1ba4cfe71a3fa03d.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=4410
http://bugzilla/bugzilla/show_bug.cgi?id=4437
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2cs/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index c012fc1fbae..1b04bd695c8 100644 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -1807,7 +1807,7 @@ Slice::Gen::generateChecksums(const UnitPtr& u) _out << sb; _out << nl << "public sealed class " << className; _out << sb; - _out << nl << "public readonly static System.Collections.Hashtable map = new System.Collections.Hashtable();"; + _out << nl << "public static System.Collections.Hashtable map = new System.Collections.Hashtable();"; _out << sp << nl << "static " << className << "()"; _out << sb; for(ChecksumMap::const_iterator p = map.begin(); p != map.end(); ++p) |