summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/RefCountedBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/RefCountedBuffer.h')
-rw-r--r--cpp/src/qpid/RefCountedBuffer.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/cpp/src/qpid/RefCountedBuffer.h b/cpp/src/qpid/RefCountedBuffer.h
index 67a512d938..f0ea86130b 100644
--- a/cpp/src/qpid/RefCountedBuffer.h
+++ b/cpp/src/qpid/RefCountedBuffer.h
@@ -28,14 +28,8 @@
namespace qpid {
/**
- * Reference-counted byte buffer. Alignment guarantees:
- * The RefCountedBuffer structure is aligned to the
- * refCountedBUfferStructAlign byte boundary specified here.
- * The buffer itself has no alignment guarantees.
+ * Reference-counted byte buffer. No alignment guarantees.
*/
-
-static const size_t refCountedBufferStructAlign = 8;
-
class RefCountedBuffer : public RefCounted {
public:
/** Create a reference counted buffer of size n */
@@ -43,8 +37,6 @@ class RefCountedBuffer : public RefCounted {
protected:
void released() const;
-
- size_t alignPad;
};
} // namespace qpid