summaryrefslogtreecommitdiff
path: root/ACE/ace/SString.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 08:20:09 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 08:20:09 +0000
commitaa30c8711cfe2c1837eedfcd7ae1b699cbe8969a (patch)
tree97c9ccc26374d117cbd4ee5f0274f7dcfac396c3 /ACE/ace/SString.h
parente8a07ecf4d01d49b6a87464b16e213777267f82f (diff)
downloadATCD-aa30c8711cfe2c1837eedfcd7ae1b699cbe8969a.tar.gz
Mon Jul 12 08:19:58 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Connector.h: * ace/Malloc_Base.h: * ace/SString.h: * ace/Stream.h: * ace/Task.h: Fixed set of doxygen warnings
Diffstat (limited to 'ACE/ace/SString.h')
-rw-r--r--ACE/ace/SString.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/SString.h b/ACE/ace/SString.h
index c9a94c7165e..900c8143a88 100644
--- a/ACE/ace/SString.h
+++ b/ACE/ace/SString.h
@@ -145,7 +145,7 @@ public:
/// Constructor that copies @a s into dynamically allocated memory.
ACE_SString (const char *s, ACE_Allocator *alloc = 0);
- /// Constructor that copies @a len chars of @s into dynamically
+ /// Constructor that copies @a len chars of @a s into dynamically
/// allocated memory (will NUL terminate the result).
ACE_SString (const char *s, size_type len, ACE_Allocator *alloc = 0);
@@ -195,7 +195,7 @@ public:
/// Get the underlying pointer.
const char *fast_rep (void) const;
- /// Same as STL String's <c_str> and <fast_rep>.
+ /// Same as STL String's c_str() and fast_rep().
const char *c_str (void) const;
/// Comparison operator that will match substrings. Returns the
@@ -230,7 +230,7 @@ public:
/// Inequality comparison operator.
bool operator != (const ACE_SString &s) const;
- /// Performs a <strcmp>-style comparison.
+ /// Performs a strcmp()-style comparison.
int compare (const ACE_SString &s) const;
/// Dump the state of an object.
@@ -243,7 +243,7 @@ private:
/// Pointer to a memory allocator.
ACE_Allocator *allocator_;
- /// Length of the ACE_SString (not counting the trailing '\0').
+ /// Length of the ACE_SString (not counting the trailing '\\0').
size_type len_;
/// Pointer to data.