Type casting fix (#951)

This commit is contained in:
yarreg
2019-10-18 02:51:41 +03:00
committed by Alex Hultman
parent 105d7d430b
commit 135ee93c2c
+1 -1
View File
@@ -345,7 +345,7 @@ public:
if ((it[i] != end[i]) && (*it[i] == min)) {
/* Mark this intersection */
intersection |= (1 << i);
intersection |= ((uint64_t)1 << i);
perSubscriberIntersectingTopicMessages[numPerSubscriberIntersectingTopicMessages++] = &triggeredTopics[i]->messages;
it[i]++;