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 /py/modules/IcePy/Slice.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 'py/modules/IcePy/Slice.cpp')
-rw-r--r-- | py/modules/IcePy/Slice.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/py/modules/IcePy/Slice.cpp b/py/modules/IcePy/Slice.cpp index 119fb3030c3..a1743cb2ab1 100644 --- a/py/modules/IcePy/Slice.cpp +++ b/py/modules/IcePy/Slice.cpp @@ -70,7 +70,6 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) opts.addOpt("", "ice"); opts.addOpt("", "checksum"); opts.addOpt("", "all"); - opts.addOpt("", "case-sensitive"); vector<string> files; try @@ -98,7 +97,6 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) Ice::StringSeq includePaths; bool debug = false; bool ice = true; // This must be true so that we can create Ice::Identity when necessary. - bool caseSensitive = false; bool all = false; bool checksum = false; if(opts.isSet("D")) @@ -126,7 +124,6 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) } } debug = opts.isSet("d") || opts.isSet("debug"); - caseSensitive = opts.isSet("case-sensitive"); all = opts.isSet("all"); checksum = opts.isSet("checksum"); @@ -144,7 +141,7 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) return 0; } - UnitPtr u = Slice::Unit::createUnit(ignoreRedefs, all, ice, caseSensitive); + UnitPtr u = Slice::Unit::createUnit(ignoreRedefs, all, ice); int parseStatus = u->parse(file, cppHandle, debug); if(!icecpp.close() || parseStatus == EXIT_FAILURE) |