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/slice2freeze/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/slice2freeze/Main.cpp')
-rw-r--r-- | cpp/src/slice2freeze/Main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/slice2freeze/Main.cpp b/cpp/src/slice2freeze/Main.cpp index 4978f0a699a..8ba2400f060 100644 --- a/cpp/src/slice2freeze/Main.cpp +++ b/cpp/src/slice2freeze/Main.cpp @@ -217,7 +217,6 @@ usage(const char* n) "-d, --debug Print debug messages.\n" "--ice Permit `Ice' prefix (for building Ice source code only)\n" ; - // Note: --case-sensitive is intentionally not shown here! } void @@ -1498,7 +1497,6 @@ main(int argc, char* argv[]) opts.addOpt("", "output-dir", IceUtilInternal::Options::NeedArg); opts.addOpt("d", "debug"); opts.addOpt("", "ice"); - opts.addOpt("", "case-sensitive"); vector<string> args; try @@ -1899,8 +1897,6 @@ main(int argc, char* argv[]) bool ice = opts.isSet("ice"); - bool caseSensitive = opts.isSet("case-sensitive"); - if(dicts.empty() && indices.empty()) { getErrorStream() << argv[0] << ": error: no Freeze types specified" << endl; @@ -1915,7 +1911,7 @@ main(int argc, char* argv[]) return EXIT_FAILURE; } - UnitPtr u = Unit::createUnit(true, false, ice, caseSensitive); + UnitPtr u = Unit::createUnit(true, false, ice); StringList includes; |