diff options
Diffstat (limited to 'cpp/src/Ice/OpaqueEndpointI.cpp')
-rw-r--r-- | cpp/src/Ice/OpaqueEndpointI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/OpaqueEndpointI.cpp b/cpp/src/Ice/OpaqueEndpointI.cpp index c7dab1d1f63..ff495474d3c 100644 --- a/cpp/src/Ice/OpaqueEndpointI.cpp +++ b/cpp/src/Ice/OpaqueEndpointI.cpp @@ -374,7 +374,7 @@ IceInternal::OpaqueEndpointI::checkOption(const string& option, const string& ar { EndpointParseException ex(__FILE__, __LINE__); ostringstream ostr; - ostr << "invalid base64 character `" << argument[i] << "' (ordinal " << (int)argument[i] + ostr << "invalid base64 character `" << argument[i] << "' (ordinal " << static_cast<int>(argument[i]) << ") in endpoint " << endpoint; ex.str = ostr.str(); throw ex; |