diff options
| author | Gordon Sim <gsim@apache.org> | 2006-11-22 16:18:06 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2006-11-22 16:18:06 +0000 |
| commit | f6b81bf19f1e9c5a6299516f030623bd41a73e56 (patch) | |
| tree | 50ad4b3e91738c87d18a5e28eebf40e249f5f8df /cpp/src/qpid/client/Message.h | |
| parent | 6e1582a62b461e389a7b65ca0053e3cc52f3dc27 (diff) | |
| download | qpid-python-f6b81bf19f1e9c5a6299516f030623bd41a73e56.tar.gz | |
Enclose any 'using std::string' statements within qpid namespaces to avoid pollution of global namespaces.
Explicit use of std::string in many places, especially for client APIs where not already done.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@478212 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Message.h')
| -rw-r--r-- | cpp/src/qpid/client/Message.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/Message.h b/cpp/src/qpid/client/Message.h index 05667ae221..28e6adc608 100644 --- a/cpp/src/qpid/client/Message.h +++ b/cpp/src/qpid/client/Message.h @@ -30,7 +30,7 @@ namespace client { class Message{ qpid::framing::AMQHeaderBody::shared_ptr header; - string data; + std::string data; bool redelivered; u_int64_t deliveryTag; |
