From 3a9b86fa714730260beccacafe77f1e1939e7c33 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Wed, 9 Feb 2011 21:07:50 +0000 Subject: Remove out-dated comment. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1069102 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/RefCountedBuffer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src') diff --git a/cpp/src/qpid/RefCountedBuffer.h b/cpp/src/qpid/RefCountedBuffer.h index c332325378..75a23862be 100644 --- a/cpp/src/qpid/RefCountedBuffer.h +++ b/cpp/src/qpid/RefCountedBuffer.h @@ -27,7 +27,7 @@ #include namespace qpid { -// FIXME aconway 2008-09-06: easy to add alignment + /** * Reference-counted byte buffer. * No alignment guarantees. @@ -51,7 +51,7 @@ public: pointer(const pointer&); ~pointer(); pointer& operator=(const pointer&); - + char* get() { return cp(); } operator char*() { return cp(); } char& operator*() { return *cp(); } @@ -62,7 +62,7 @@ public: const char& operator*() const { return *cp(); } const char& operator[](size_t i) const { return cp()[i]; } }; - + /** Create a reference counted buffer of size n */ static pointer create(size_t n); -- cgit v1.2.1