diff options
Diffstat (limited to 'matlab/src/IceMatlab/ObjectPrx.cpp')
-rw-r--r-- | matlab/src/IceMatlab/ObjectPrx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/matlab/src/IceMatlab/ObjectPrx.cpp b/matlab/src/IceMatlab/ObjectPrx.cpp index c2ef3d0b89b..dc6317c6963 100644 --- a/matlab/src/IceMatlab/ObjectPrx.cpp +++ b/matlab/src/IceMatlab/ObjectPrx.cpp @@ -565,7 +565,7 @@ Ice_ObjectPrx_ice_getNumEndpoints(void* self) { try { - return createResultValue(createInt(SELF->ice_getEndpoints().size())); + return createResultValue(createInt(static_cast<int>(SELF->ice_getEndpoints().size()))); } catch(const std::exception& ex) { |