summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2011-02-09 21:07:50 +0000
committerAlan Conway <aconway@apache.org>2011-02-09 21:07:50 +0000
commit3a9b86fa714730260beccacafe77f1e1939e7c33 (patch)
tree50bef58e935429f22029d719037c0cccdf2a63f0
parente2669f51c0bc5e0ae7c98e0550fd0d95020d8c64 (diff)
downloadqpid-python-3a9b86fa714730260beccacafe77f1e1939e7c33.tar.gz
Remove out-dated comment.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1069102 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/src/qpid/RefCountedBuffer.h6
1 files changed, 3 insertions, 3 deletions
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 <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);