diff options
author | lloyd <[email protected]> | 2010-06-15 21:59:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 21:59:23 +0000 |
commit | 416695f7363c4e93eaeaea23427a1fed3ad73cab (patch) | |
tree | ff1482f22f176733305583ad56855dae997d0d6d /src/alloc | |
parent | 6565cf0df1ed88a818aecf6de7635531e05c0871 (diff) |
Fix a few hundred Doxygen warnings
Diffstat (limited to 'src/alloc')
-rw-r--r-- | src/alloc/secmem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc/secmem.h b/src/alloc/secmem.h index b3b3fa973..d1a3ba7bd 100644 --- a/src/alloc/secmem.h +++ b/src/alloc/secmem.h @@ -97,7 +97,7 @@ class MemoryRegion /** * Copy the contents of another buffer into this buffer. * The former contents of *this are discarded. - * @param in the buffer to copy the contents from. + * @param other the buffer to copy the contents from. * @return a reference to *this */ MemoryRegion<T>& operator=(const MemoryRegion<T>& other) @@ -156,7 +156,7 @@ class MemoryRegion /** * Append data to the end of this buffer. - * @param data the buffer containing the data to append + * @param other the buffer containing the data to append */ void append(const MemoryRegion<T>& other) { append(other.begin(), other.size()); } |