diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-20 15:30:28 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-20 15:30:28 -0230 |
commit | b0089ca4d5998548dbbfbc1dec8414fe8f7c557f (patch) | |
tree | a5d50a3d1d57454293a93789de5423db53b512e8 /cpp/src/slice2py/Main.cpp | |
parent | bug 3961 - change Application classes to use process logger (diff) | |
download | ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.tar.bz2 ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.tar.xz ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.zip |
Bug 1535 - remove --case-sensitive option form slice compilers
Diffstat (limited to 'cpp/src/slice2py/Main.cpp')
-rw-r--r-- | cpp/src/slice2py/Main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/slice2py/Main.cpp b/cpp/src/slice2py/Main.cpp index 31eaf5fc784..334aa0cf714 100644 --- a/cpp/src/slice2py/Main.cpp +++ b/cpp/src/slice2py/Main.cpp @@ -379,7 +379,6 @@ usage(const char* n) "--checksum Generate checksums for Slice definitions.\n" "--prefix PREFIX Prepend filenames of Python modules with PREFIX.\n" ; - // Note: --case-sensitive is intentionally not shown here! } int @@ -399,7 +398,6 @@ main(int argc, char* argv[]) opts.addOpt("", "no-package"); opts.addOpt("", "checksum"); opts.addOpt("", "prefix", IceUtilInternal::Options::NeedArg); - opts.addOpt("", "case-sensitive"); vector<string> args; try @@ -464,8 +462,6 @@ main(int argc, char* argv[]) string prefix = opts.optArg("prefix"); - bool caseSensitive = opts.isSet("case-sensitive"); - if(args.empty()) { getErrorStream() << argv[0] << ": error: no input file" << endl; @@ -506,7 +502,7 @@ main(int argc, char* argv[]) } else { - UnitPtr u = Unit::createUnit(false, all, ice, caseSensitive); + UnitPtr u = Unit::createUnit(false, all, ice); int parseStatus = u->parse(*i, cppHandle, debug); if(!icecpp.close()) |