summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-01-07 00:27:08 +0000
committerMark Spruiell <mes@zeroc.com>2006-01-07 00:27:08 +0000
commitaeedc91e3df395f60c914038b3eb70fef66c4a1b (patch)
tree3448216ae2cc9dd1cf874bf8bea0b800113ca30d /cpp/src
parentAdding .NET 1.1 solution (diff)
downloadice-aeedc91e3df395f60c914038b3eb70fef66c4a1b.tar.bz2
ice-aeedc91e3df395f60c914038b3eb70fef66c4a1b.tar.xz
ice-aeedc91e3df395f60c914038b3eb70fef66c4a1b.zip
changing conditional compilation symbol for .NET version
Diffstat (limited to 'cpp/src')
-rwxr-xr-xcpp/src/slice2cs/Gen.cpp2
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";