diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-16 22:57:38 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-04-16 22:57:38 +0000 |
commit | be0a625c157fcbb80bd4d357549e9b972e501245 (patch) | |
tree | 59e5f1fb4876480155baf0011897a22f36631391 /ace/SString.h | |
parent | 425c07f61e720a1cc49c1b826d054dfef19d9442 (diff) | |
download | ATCD-be0a625c157fcbb80bd4d357549e9b972e501245.tar.gz |
move null_string_ declaration out of header file because it doesn't need to be exposed
Diffstat (limited to 'ace/SString.h')
-rw-r--r-- | ace/SString.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ace/SString.h b/ace/SString.h index a3b5388f70e..5f778e50954 100644 --- a/ace/SString.h +++ b/ace/SString.h @@ -87,7 +87,6 @@ public: char operator[] (size_t index) const; // Return the <index'th> character in the string (doesn't perform // bounds checking). - // _Don't_ even think about modifying the result if it has length 0! int operator== (const ACE_CString &s) const; // Comparison operator (must match entire string). @@ -110,9 +109,6 @@ private: char *rep_; // Pointer to data. - - static char null_string_; - // Static null string. }; class ACE_Export ACE_SString |