diff options
| author | Ken Giusti <kgiusti@apache.org> | 2012-12-19 20:08:01 +0000 |
|---|---|---|
| committer | Ken Giusti <kgiusti@apache.org> | 2012-12-19 20:08:01 +0000 |
| commit | 350a795332392fe07c1cd8745b8437b9bfb4d878 (patch) | |
| tree | 7fa78af4bb4c756421208cc83c7dd978791584c4 /cpp | |
| parent | 641dd457365b5894859a325d289497c554b6b777 (diff) | |
| download | qpid-python-350a795332392fe07c1cd8745b8437b9bfb4d878.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 |
