diff options
Diffstat (limited to 'python/modules')
-rw-r--r-- | python/modules/IcePy/Slice.cpp | 5 | ||||
-rw-r--r-- | python/modules/IcePy/msbuild/icepy.vcxproj | 1 | ||||
-rw-r--r-- | python/modules/IcePy/msbuild/icepy.vcxproj.filters | 3 |
3 files changed, 1 insertions, 8 deletions
diff --git a/python/modules/IcePy/Slice.cpp b/python/modules/IcePy/Slice.cpp index e11365d8d40..c0ab744a766 100644 --- a/python/modules/IcePy/Slice.cpp +++ b/python/modules/IcePy/Slice.cpp @@ -64,7 +64,6 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) opts.addOpt("d", "debug"); opts.addOpt("", "ice"); opts.addOpt("", "underscore"); - opts.addOpt("", "checksum"); opts.addOpt("", "all"); vector<string> files; @@ -95,7 +94,6 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) bool ice = true; // This must be true so that we can create Ice::Identity when necessary. bool underscore = opts.isSet("underscore"); bool all = false; - bool checksum = false; if(opts.isSet("D")) { vector<string> optargs = opts.argVec("D"); @@ -122,7 +120,6 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) } debug = opts.isSet("d") || opts.isSet("debug"); all = opts.isSet("all"); - checksum = opts.isSet("checksum"); bool ignoreRedefs = false; bool keepComments = true; @@ -161,7 +158,7 @@ IcePy_loadSlice(PyObject* /*self*/, PyObject* args) // It must be the first or second line. // out << "# -*- coding: utf-8 -*-\n"; - generate(u, all, checksum, includePaths, out); + generate(u, all, includePaths, out); u->destroy(); string code = codeStream.str(); diff --git a/python/modules/IcePy/msbuild/icepy.vcxproj b/python/modules/IcePy/msbuild/icepy.vcxproj index 024f18b923d..710f72888f1 100644 --- a/python/modules/IcePy/msbuild/icepy.vcxproj +++ b/python/modules/IcePy/msbuild/icepy.vcxproj @@ -19,7 +19,6 @@ </ProjectConfiguration> </ItemGroup> <ItemGroup> - <ClCompile Include="..\..\..\..\cpp\src\Slice\Checksum.cpp" /> <ClCompile Include="..\..\..\..\cpp\src\Slice\FileTracker.cpp" /> <ClCompile Include="..\..\..\..\cpp\src\Slice\Grammar.cpp" /> <ClCompile Include="..\..\..\..\cpp\src\Slice\MD5.cpp" /> diff --git a/python/modules/IcePy/msbuild/icepy.vcxproj.filters b/python/modules/IcePy/msbuild/icepy.vcxproj.filters index 2ce99eb8a4d..0ac1f90d193 100644 --- a/python/modules/IcePy/msbuild/icepy.vcxproj.filters +++ b/python/modules/IcePy/msbuild/icepy.vcxproj.filters @@ -102,9 +102,6 @@ <ClCompile Include="..\..\..\..\cpp\src\Slice\MD5I.cpp"> <Filter>Source Files</Filter> </ClCompile> - <ClCompile Include="..\..\..\..\cpp\src\Slice\Checksum.cpp"> - <Filter>Source Files</Filter> - </ClCompile> <ClCompile Include="..\..\..\..\cpp\src\Slice\StringLiteralUtil.cpp" /> <ClCompile Include="..\Dispatcher.cpp"> <Filter>Source Files</Filter> |