diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-08 21:34:57 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-08 21:34:57 +0000 |
commit | 8498b68121d888d6b524b3f85e701974529697a8 (patch) | |
tree | 51ef3e55404efce5f11b937ea75a96545ced82b2 /ace | |
parent | 4e6da8dd593f02c36c25cca69a3fba59eb9efd85 (diff) | |
download | ATCD-8498b68121d888d6b524b3f85e701974529697a8.tar.gz |
.
Diffstat (limited to 'ace')
-rw-r--r-- | ace/Env_Value_T.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Env_Value_T.h b/ace/Env_Value_T.h index be8879c092c..3921321985f 100644 --- a/ace/Env_Value_T.h +++ b/ace/Env_Value_T.h @@ -101,6 +101,12 @@ ACE_Convert (const char *s, char *&v) } inline void +ACE_Convert (const char *s, const char *&v) +{ + v = (const char *) s; +} + +inline void ACE_Convert (const char *s, short &si) { si = ACE_static_cast (short, ACE_OS::strtol (s, 0, 10)); |