diff options
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index 44ba61e9527..37872aba7ec 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -53,7 +53,7 @@ OutgoingAsyncBase::exception(const Exception& ex) bool OutgoingAsyncBase::response() { - assert(false); // Must be overriden by request that can handle responses + assert(false); // Must be overridden by request that can handle responses return false; } @@ -409,7 +409,7 @@ OutgoingAsyncBase::getCookie() const const std::string& OutgoingAsyncBase::getOperation() const { - assert(false); // Must be overriden + assert(false); // Must be overridden static string empty; return empty; } |