summaryrefslogtreecommitdiff
path: root/ACE/ace/String_Base.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/String_Base.h')
-rw-r--r--ACE/ace/String_Base.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/ACE/ace/String_Base.h b/ACE/ace/String_Base.h
index 239019b0fae..a2d565a8420 100644
--- a/ACE/ace/String_Base.h
+++ b/ACE/ace/String_Base.h
@@ -337,15 +337,6 @@ public:
size_type length (void) const;
/**
- * Return the number of allocated CHARs in the string object.
- * This may be greater than the current length of the string.
- *
- * @return Maximum number of CHAR units that can be stored, including
- * any terminating nul that may be needed.
- */
- size_t capacity (void) const;
-
- /**
* Return @c true if the length of the string is zero, else @c false.
*/
bool is_empty (void) const;
@@ -474,7 +465,7 @@ public:
/**
* Inequality comparison operator.
*
- * @param s String to compare against stored string.
+ * @param s Input ACE_String_Base string to compare against stored string.
* @return @c true if not equal, @c false otherwise.
*/
bool operator != (const ACE_String_Base<CHAR> &s) const;
@@ -514,14 +505,10 @@ public:
* Rather than fix the method to work as documented, the code is
* left as is, but the second parameter should probably not be used.
*
- * fast_resize just adjusts the buffer if needed and sets the length,
- * it doesn't fill the buffer, so is much faster.
- *
* @param len The number of CHARs to reserve
* @param c The CHAR to use when filling the string.
*/
void resize (size_type len, CHAR c = 0);
- void fast_resize (size_t len);
/// Swap the contents of this @c ACE_String_Base with @a str.
/**