Type casting fix (#951)
This commit is contained in:
@@ -345,7 +345,7 @@ public:
|
|||||||
if ((it[i] != end[i]) && (*it[i] == min)) {
|
if ((it[i] != end[i]) && (*it[i] == min)) {
|
||||||
|
|
||||||
/* Mark this intersection */
|
/* Mark this intersection */
|
||||||
intersection |= (1 << i);
|
intersection |= ((uint64_t)1 << i);
|
||||||
perSubscriberIntersectingTopicMessages[numPerSubscriberIntersectingTopicMessages++] = &triggeredTopics[i]->messages;
|
perSubscriberIntersectingTopicMessages[numPerSubscriberIntersectingTopicMessages++] = &triggeredTopics[i]->messages;
|
||||||
|
|
||||||
it[i]++;
|
it[i]++;
|
||||||
|
|||||||
Reference in New Issue
Block a user