diff options
Diffstat (limited to 'common/query.h')
-rw-r--r-- | common/query.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/query.h b/common/query.h index 0808432..1b909e5 100644 --- a/common/query.h +++ b/common/query.h | |||
@@ -195,13 +195,13 @@ public: | |||
195 | return *this; | 195 | return *this; |
196 | } | 196 | } |
197 | 197 | ||
198 | Query(const ApplicationDomain::Entity &value) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false) | 198 | Query(const ApplicationDomain::Entity &value) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false), bloomThread(false) |
199 | { | 199 | { |
200 | ids << value.identifier(); | 200 | ids << value.identifier(); |
201 | resources << value.resourceInstanceIdentifier(); | 201 | resources << value.resourceInstanceIdentifier(); |
202 | } | 202 | } |
203 | 203 | ||
204 | Query(Flags flags = Flags()) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false) | 204 | Query(Flags flags = Flags()) : limit(0), liveQuery(false), synchronousQuery(false), threadLeaderOnly(false), bloomThread(false) |
205 | { | 205 | { |
206 | } | 206 | } |
207 | 207 | ||
@@ -237,6 +237,7 @@ public: | |||
237 | bool liveQuery; | 237 | bool liveQuery; |
238 | bool synchronousQuery; | 238 | bool synchronousQuery; |
239 | bool threadLeaderOnly; | 239 | bool threadLeaderOnly; |
240 | bool bloomThread; | ||
240 | }; | 241 | }; |
241 | } | 242 | } |
242 | 243 | ||