diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-25 16:10:36 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-05-25 16:10:36 +0000 |
commit | f834a1ec3aaf8567ac92e2575a0514bbc5df20cf (patch) | |
tree | f5d7ed8f6c1b9fb95cdbf4c57cfcf2138a011741 /ace/OS_String.cpp | |
parent | 128ac575aa7aff6ed0d0b9d46155b782a4f40e03 (diff) | |
download | ATCD-f834a1ec3aaf8567ac92e2575a0514bbc5df20cf.tar.gz |
ChangeLogTag:Thu May 25 09:07:16 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'ace/OS_String.cpp')
-rw-r--r-- | ace/OS_String.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/OS_String.cpp b/ace/OS_String.cpp index de97a6529b7..a8d85ff05d4 100644 --- a/ace/OS_String.cpp +++ b/ace/OS_String.cpp @@ -33,7 +33,7 @@ ACE_OS_String::strnstr (const char *s1, const char *s2, size_t len2) } #if defined (ACE_HAS_WCHAR) -ACE_INLINE const wchar_t * +const wchar_t * ACE_OS_String::strnstr (const wchar_t *s1, const wchar_t *s2, size_t len2) { // Substring length @@ -57,7 +57,7 @@ ACE_OS_String::strnstr (const wchar_t *s1, const wchar_t *s2, size_t len2) } #endif /* ACE_HAS_WCHAR */ -ACE_INLINE char * +char * ACE_OS_String::strdup (const char *s) { // @@ WINCE Should we provide this function on WinCE? @@ -73,7 +73,7 @@ ACE_OS_String::strdup (const char *s) } #if defined (ACE_HAS_WCHAR) -ACE_INLINE wchar_t * +wchar_t * ACE_OS_String::strdup (const wchar_t *s) { # if defined (__BORLANDC__) |