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 | 22a4d0ea8f679904612a9695d732cc4be97309fe (patch) | |
| tree | a042c62657bda498f1960fc05d15404fac41a937 /qpid/cpp/src | |
| parent | 242db130c1399a96ce897cfbc4a445ce3f65f5b4 (diff) | |
| download | qpid-python-22a4d0ea8f679904612a9695d732cc4be97309fe.tar.gz | |
NO-JIRA: add explicit type for large constants
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1424072 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/amqp/descriptors.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/amqp/descriptors.h b/qpid/cpp/src/qpid/amqp/descriptors.h index b2616ed93a..19a8985433 100644 --- a/qpid/cpp/src/qpid/amqp/descriptors.h +++ b/qpid/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 |
