diff options
| author | Alan Conway <aconway@apache.org> | 2007-08-20 13:40:10 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2007-08-20 13:40:10 +0000 |
| commit | d9ac8ad5c3dfc0946fe08aad468c3fea6c223d2b (patch) | |
| tree | 16b96399534086df7d3e7a9d4ff15d487ea672cb /qpid/cpp/src | |
| parent | fb7b5ae9627ea45c26ef841e9976b3891a6c3063 (diff) | |
| download | qpid-python-d9ac8ad5c3dfc0946fe08aad468c3fea6c223d2b.tar.gz | |
Undo over-hasty commit
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@567701 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/framing/Blob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/framing/Blob.h b/qpid/cpp/src/qpid/framing/Blob.h index 7c17611dc8..ea44dc104e 100644 --- a/qpid/cpp/src/qpid/framing/Blob.h +++ b/qpid/cpp/src/qpid/framing/Blob.h @@ -143,7 +143,7 @@ class Blob Blob& operator=(const T& x) { clear(); construct(in_place<T>(x)); return *this; } /** Get pointer to blob contents. Caller must know how to cast it. */ - void* get() { return empty() ? 0 : store.address(); } + void* get() { return store.address(); } /** Get const pointer to blob contents */ const void* get() const { return empty() ? 0 : store.address(); } |
