diff options
| author | Gordon Sim <gsim@apache.org> | 2007-10-02 12:34:59 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-10-02 12:34:59 +0000 |
| commit | 1748fa09ecd206023cdac7a3e5be18816ffa803b (patch) | |
| tree | 76f11f6accf8b384f68f9744312ae580377ae169 /cpp/src/qpid/broker/NullMessageStore.cpp | |
| parent | 5254308738c9b7df64563811ae153cbae3de5f06 (diff) | |
| download | qpid-python-1748fa09ecd206023cdac7a3e5be18816ffa803b.tar.gz | |
mark Message::sendContent() as const
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@581209 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/NullMessageStore.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/NullMessageStore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/NullMessageStore.cpp b/cpp/src/qpid/broker/NullMessageStore.cpp index a86cb5f8c5..843d31654b 100644 --- a/cpp/src/qpid/broker/NullMessageStore.cpp +++ b/cpp/src/qpid/broker/NullMessageStore.cpp @@ -87,12 +87,12 @@ void NullMessageStore::destroy(PersistableMessage&) QPID_LOG(info, "No need to destroy staged message. Persistence not enabled."); } -void NullMessageStore::appendContent(PersistableMessage&, const string&) +void NullMessageStore::appendContent(const PersistableMessage&, const string&) { QPID_LOG(info, "Can't load content. Persistence not enabled."); } -void NullMessageStore::loadContent(PersistableMessage&, string&, uint64_t, uint32_t) +void NullMessageStore::loadContent(const PersistableMessage&, string&, uint64_t, uint32_t) { QPID_LOG(info, "Can't load content. Persistence not enabled."); } |
