diff options
author | Jose <jose@zeroc.com> | 2018-10-25 14:47:14 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-10-25 14:48:38 +0200 |
commit | 879e124fc0fa0312362cfde78205a6353327884b (patch) | |
tree | 6c13becf326b5b50cbcd8b071e635d2f07132dd1 /cpp/src/Ice/Service.cpp | |
parent | Minor code simplification (diff) | |
download | ice-879e124fc0fa0312362cfde78205a6353327884b.tar.bz2 ice-879e124fc0fa0312362cfde78205a6353327884b.tar.xz ice-879e124fc0fa0312362cfde78205a6353327884b.zip |
Remove Service checkSystem no longer useful
Close #258
Diffstat (limited to 'cpp/src/Ice/Service.cpp')
-rw-r--r-- | cpp/src/Ice/Service.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/cpp/src/Ice/Service.cpp b/cpp/src/Ice/Service.cpp index 22b18eff970..b1243532bfc 100644 --- a/cpp/src/Ice/Service.cpp +++ b/cpp/src/Ice/Service.cpp @@ -764,12 +764,6 @@ Ice::Service::name() const return _name; } -bool -Ice::Service::checkSystem() const -{ - return true; -} - #ifdef _WIN32 int Ice::Service::run(int argc, const wchar_t* const argv[], const InitializationData& initData, int version) @@ -1057,12 +1051,6 @@ Ice::Service::runService(int argc, const char* const argv[], const Initializatio { assert(_service); - if(!checkSystem()) - { - error("Win32 service not supported on Windows 9x/ME"); - return EXIT_FAILURE; - } - if(_name.empty()) { error("invalid name for Win32 service"); |