diff options
Diffstat (limited to 'ace/SString.i')
-rw-r--r-- | ace/SString.i | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ace/SString.i b/ace/SString.i index 77875a19c84..103af567481 100644 --- a/ace/SString.i +++ b/ace/SString.i @@ -32,6 +32,12 @@ ACE_CString::fast_rep (void) const return this->rep_; } +ACE_INLINE const char * +ACE_CString::c_str (void) const +{ + return this->rep_; +} + // Comparison operator. ACE_INLINE int @@ -132,6 +138,12 @@ ACE_WString::fast_rep (void) const return this->rep_; } +ACE_INLINE const ACE_USHORT16 * +ACE_WString::c_str (void) const +{ + return this->rep_; +} + // Comparison operator. ACE_INLINE int |