diff options
-rw-r--r-- | icespider/core/core.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/icespider/core/core.cpp b/icespider/core/core.cpp index 933fdc1..4f4b646 100644 --- a/icespider/core/core.cpp +++ b/icespider/core/core.cpp @@ -20,7 +20,8 @@ namespace IceSpider { mroutes[r->pathElementCount()].push_back(r); } - communicator = Ice::initialize({}); + Ice::InitializationData id; + communicator = Ice::initialize(id); } Core::~Core() |