diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-02-18 12:18:46 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-02-18 12:18:46 -0800 |
commit | 0da776d5f307fc007c0ef3340d16387096d9c1c2 (patch) | |
tree | 12f56c9eb624010b0a9c04871175a543adf84667 /cpp/src/slice2cs/Main.cpp | |
parent | Fixed AMI bug where exception wasn't called if response callback was null, ad... (diff) | |
download | ice-0da776d5f307fc007c0ef3340d16387096d9c1c2.tar.bz2 ice-0da776d5f307fc007c0ef3340d16387096d9c1c2.tar.xz ice-0da776d5f307fc007c0ef3340d16387096d9c1c2.zip |
ICE-6861 - C# stream changes
Diffstat (limited to 'cpp/src/slice2cs/Main.cpp')
-rw-r--r-- | cpp/src/slice2cs/Main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/slice2cs/Main.cpp b/cpp/src/slice2cs/Main.cpp index 39c340d329e..2b26e600004 100644 --- a/cpp/src/slice2cs/Main.cpp +++ b/cpp/src/slice2cs/Main.cpp @@ -78,7 +78,6 @@ usage(const char* n) "--ice Allow reserved Ice prefix in Slice identifiers.\n" "--underscore Allow underscores in Slice identifiers.\n" "--checksum Generate checksums for Slice definitions.\n" - "--stream Generate marshaling support for public stream API.\n" ; } @@ -104,7 +103,6 @@ compile(int argc, char* argv[]) opts.addOpt("", "ice"); opts.addOpt("", "underscore"); opts.addOpt("", "checksum"); - opts.addOpt("", "stream"); bool validate = false; for(int i = 0; i < argc; ++i) @@ -186,8 +184,6 @@ compile(int argc, char* argv[]) bool checksum = opts.isSet("checksum"); - bool stream = opts.isSet("stream"); - if(args.empty()) { getErrorStream() << argv[0] << ": error: no input file" << endl; @@ -322,7 +318,7 @@ compile(int argc, char* argv[]) { try { - Gen gen(icecpp->getBaseName(), includePaths, output, impl, implTie, stream); + Gen gen(icecpp->getBaseName(), includePaths, output, impl, implTie); gen.generate(p); if(tie) { |