diff options
author | Jose <jose@zeroc.com> | 2017-01-10 14:34:05 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-01-10 14:34:05 +0100 |
commit | 82f314a870b145e81553987100067558498a1be0 (patch) | |
tree | 2b94ca3464ee643c53237021bc7035394fecb4fd /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Fix for static initialization issue with VS 2013 (diff) | |
download | ice-82f314a870b145e81553987100067558498a1be0.tar.bz2 ice-82f314a870b145e81553987100067558498a1be0.tar.xz ice-82f314a870b145e81553987100067558498a1be0.zip |
UWP code simplifications
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 099cb147b4f..d4198699609 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -479,7 +479,7 @@ IceInternal::ReferenceFactory::create(const string& str, const string& propertyP string es = s.substr(beg, end - beg); EndpointIPtr endp = _instance->endpointFactoryManager()->create(es, false); - if(endp != 0) + if(endp != ICE_NULLPTR) { endpoints.push_back(endp); } |