summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-03-29 08:32:00 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-03-29 08:32:00 +0000
commitd420a1a008c81a1ff4c74d32b6f8ac4140afed48 (patch)
treea4b48f6ab3837ac2ff5db1277b8de1705ea3c5af
parentHeader fixes, warning fixes. (diff)
downloadice-d420a1a008c81a1ff4c74d32b6f8ac4140afed48.tar.bz2
ice-d420a1a008c81a1ff4c74d32b6f8ac4140afed48.tar.xz
ice-d420a1a008c81a1ff4c74d32b6f8ac4140afed48.zip
Fixed invalid implicit conversion
-rw-r--r--cppe/include/IceE/Handle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/include/IceE/Handle.h b/cppe/include/IceE/Handle.h
index 523ab4973b1..824f832c520 100644
--- a/cppe/include/IceE/Handle.h
+++ b/cppe/include/IceE/Handle.h
@@ -80,11 +80,11 @@ public:
private:
- void throwNullHandleException(char *, int) const;
+ void throwNullHandleException(const char *, int) const;
};
template<typename T> void
-HandleBase<T>::throwNullHandleException(char* file, int line) const
+HandleBase<T>::throwNullHandleException(const char* file, int line) const
{
throw NullHandleException(file, line);
}