summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cppe/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2cppe/Main.cpp')
-rw-r--r--cpp/src/slice2cppe/Main.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/slice2cppe/Main.cpp b/cpp/src/slice2cppe/Main.cpp
index 7bcebe1b172..87a5f82ebfd 100644
--- a/cpp/src/slice2cppe/Main.cpp
+++ b/cpp/src/slice2cppe/Main.cpp
@@ -37,7 +37,6 @@ usage(const char* n)
"-d, --debug Print debug messages.\n"
"--ice Permit `Ice' prefix (for building Ice source code only)\n"
"--checksum Generate checksums for Slice definitions.\n"
- "--stream Generate marshaling support for public stream API.\n"
;
// Note: --case-sensitive is intentionally not shown here!
}
@@ -56,7 +55,6 @@ main(int argc, char* argv[])
bool debug;
bool ice;
bool checksum;
- bool stream;
bool caseSensitive;
IceUtil::Options opts;
@@ -76,7 +74,6 @@ main(int argc, char* argv[])
opts.addOpt("d", "debug");
opts.addOpt("", "ice");
opts.addOpt("", "checksum");
- opts.addOpt("", "stream");
opts.addOpt("", "case-sensitive");
vector<string> args;
@@ -147,7 +144,6 @@ main(int argc, char* argv[])
debug = opts.isSet("d") || opts.isSet("debug");
ice = opts.isSet("ice");
checksum = opts.isSet("checksum");
- stream = opts.isSet("stream");
caseSensitive = opts.isSet("case-sensitive");
if(args.empty())
@@ -208,7 +204,7 @@ main(int argc, char* argv[])
else
{
Gen gen(argv[0], icecpp.getBaseName(), headerExtension, sourceExtension, include,
- includePaths, dllExport, output, impl, checksum, stream);
+ includePaths, dllExport, output, impl, checksum);
if(!gen)
{
u->destroy();