diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-01-07 00:27:08 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-01-07 00:27:08 +0000 |
commit | aeedc91e3df395f60c914038b3eb70fef66c4a1b (patch) | |
tree | 3448216ae2cc9dd1cf874bf8bea0b800113ca30d /cpp/src | |
parent | Adding .NET 1.1 solution (diff) | |
download | ice-aeedc91e3df395f60c914038b3eb70fef66c4a1b.tar.bz2 ice-aeedc91e3df395f60c914038b3eb70fef66c4a1b.tar.xz ice-aeedc91e3df395f60c914038b3eb70fef66c4a1b.zip |
changing conditional compilation symbol for .NET version
Diffstat (limited to 'cpp/src')
-rwxr-xr-x | 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 83d88e96385..d9baeb39204 100755 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -1655,7 +1655,7 @@ Slice::Gen::TypesVisitor::visitSequence(const SequencePtr& p) _out << sp << nl << "#region ArrayList members"; - _out << sp << nl << "#if !DOTNET_2X"; + _out << sp << nl << "#if ICE_DOTNET_1X"; _out << nl << "public virtual int Capacity"; _out << sb; _out << nl << "get"; |