diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-12-19 20:08:01 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2012-12-19 20:08:01 +0000 |
| commit | f02803284dbf0af85b0527a11f7449f2b6e69bf8 (patch) | |
| tree | 7fa78af4bb4c756421208cc83c7dd978791584c4 /cpp | |
| parent | f85d4baa2ffada3b60111472373abedae3bd53ce (diff) | |
| download | qpid-python-f02803284dbf0af85b0527a11f7449f2b6e69bf8.tar.gz | |
NO-JIRA: add explicit type for large constants
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1424072 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/amqp/descriptors.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/amqp/descriptors.h b/cpp/src/qpid/amqp/descriptors.h index b2616ed93a..19a8985433 100644 --- a/cpp/src/qpid/amqp/descriptors.h +++ b/cpp/src/qpid/amqp/descriptors.h @@ -79,8 +79,8 @@ namespace filters { const std::string LEGACY_DIRECT_FILTER_SYMBOL("apache.org:legacy-amqp-direct-binding:string"); const std::string LEGACY_TOPIC_FILTER_SYMBOL("apache.org:legacy-amqp-direct-binding:string"); -const uint64_t LEGACY_DIRECT_FILTER_CODE(0x0000468C00000000); -const uint64_t LEGACY_TOPIC_FILTER_CODE(0x0000468C00000001); +const uint64_t LEGACY_DIRECT_FILTER_CODE(0x0000468C00000000ULL); +const uint64_t LEGACY_TOPIC_FILTER_CODE(0x0000468C00000001ULL); } }} // namespace qpid::amqp |
