diff options
| author | Robert Greig <rgreig@apache.org> | 2007-01-04 15:24:10 +0000 |
|---|---|---|
| committer | Robert Greig <rgreig@apache.org> | 2007-01-04 15:24:10 +0000 |
| commit | 28f48fe96ddd11673fd02a4651c1b36e402fb053 (patch) | |
| tree | 9bbee5a5e4e80bb92c12437bc680f670669fc749 | |
| parent | d22cee259ec4c03e21c8eafbf7291d2dadb62b11 (diff) | |
| download | qpid-python-28f48fe96ddd11673fd02a4651c1b36e402fb053.tar.gz | |
Patch for QPID-237 applied. Fixes a compile error on the build.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@492602 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/dotnet/Qpid.Client/Client/Message/QpidBytesMessage.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/dotnet/Qpid.Client/Client/Message/QpidBytesMessage.cs b/qpid/dotnet/Qpid.Client/Client/Message/QpidBytesMessage.cs index e15ab241f6..8788856062 100644 --- a/qpid/dotnet/Qpid.Client/Client/Message/QpidBytesMessage.cs +++ b/qpid/dotnet/Qpid.Client/Client/Message/QpidBytesMessage.cs @@ -336,6 +336,11 @@ namespace Qpid.Client.Message _data.flip(); } + void IBytesMessage.Reset() + { + Reset(); + } + /** * Check that there is at least a certain number of bytes available to read * |
