diff options
| author | Alan Conway <aconway@apache.org> | 2011-02-09 21:07:50 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2011-02-09 21:07:50 +0000 |
| commit | 2b33659a19dc25b038b9a8e5a44d8b3d61bfba30 (patch) | |
| tree | ef18a581c3a27d3fdd52266c01e0f671a6bec3d6 /qpid/cpp/src | |
| parent | 3eabe6fb7d3f7b69878d5527a9eaf3309ff59cc6 (diff) | |
| download | qpid-python-2b33659a19dc25b038b9a8e5a44d8b3d61bfba30.tar.gz | |
Remove out-dated comment.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1069102 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/RefCountedBuffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/qpid/RefCountedBuffer.h b/qpid/cpp/src/qpid/RefCountedBuffer.h index c332325378..75a23862be 100644 --- a/qpid/cpp/src/qpid/RefCountedBuffer.h +++ b/qpid/cpp/src/qpid/RefCountedBuffer.h @@ -27,7 +27,7 @@ #include <boost/intrusive_ptr.hpp> 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); |
