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 | 6cc9fa34792b640df3283f4aa4021237f2ee4ae9 (patch) | |
tree | c637db3da15af9d84d1c8d44f25ab17b02117f6a /cpp/src | |
parent | eb7df68733b53ad2b9c17520771261a8c5025703 (diff) | |
download | qpid-python-6cc9fa34792b640df3283f4aa4021237f2ee4ae9.tar.gz |
Undo over-hasty commit
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@567701 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/framing/Blob.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/Blob.h b/cpp/src/qpid/framing/Blob.h index 7c17611dc8..ea44dc104e 100644 --- a/cpp/src/qpid/framing/Blob.h +++ b/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(); } |