diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-29 08:32:00 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-29 08:32:00 +0000 |
commit | d420a1a008c81a1ff4c74d32b6f8ac4140afed48 (patch) | |
tree | a4b48f6ab3837ac2ff5db1277b8de1705ea3c5af | |
parent | Header fixes, warning fixes. (diff) | |
download | ice-d420a1a008c81a1ff4c74d32b6f8ac4140afed48.tar.bz2 ice-d420a1a008c81a1ff4c74d32b6f8ac4140afed48.tar.xz ice-d420a1a008c81a1ff4c74d32b6f8ac4140afed48.zip |
Fixed invalid implicit conversion
-rw-r--r-- | cppe/include/IceE/Handle.h | 4 |
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); } |