diff options
author | Steve Huston <shuston@riverace.com> | 1999-01-29 22:15:07 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-01-29 22:15:07 +0000 |
commit | 25d12df15ba3596766ae703eed6f6ece98fae04b (patch) | |
tree | 48d4d96b6d66ad968e480ddad4e1411bee080bc0 /apps | |
parent | a83f179796ff9a5977f380f89fb4ed85107c413a (diff) | |
download | ATCD-25d12df15ba3596766ae703eed6f6ece98fae04b.tar.gz |
Added ACE_const_cast in List_Node ctor initializer.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/gperf/src/List_Node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gperf/src/List_Node.cpp b/apps/gperf/src/List_Node.cpp index ef51182ad71..6cd2a73d14b 100644 --- a/apps/gperf/src/List_Node.cpp +++ b/apps/gperf/src/List_Node.cpp @@ -71,7 +71,7 @@ List_Node::List_Node (char *k, int len) : link (0), next (0), key (k), - rest (option[TYPE] ? k + len + 1 : ""), + rest (option[TYPE] ? k + len + 1 : ACE_const_cast(char*, "")), length (len), index (0) { |