You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by yz...@apache.org on 2016/12/28 14:04:46 UTC

[20/50] [abbrv] ignite git commit: IGNITE-1443 CPP: Implement cache continuous queries - minor fix

IGNITE-1443 CPP: Implement cache continuous queries - minor fix

This closes #1378


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/848bb663
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/848bb663
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/848bb663

Branch: refs/heads/ignite-comm-balance-master
Commit: 848bb66311365e5f8e3bde8310ad064d3449bf13
Parents: 1b2afbb
Author: Igor Sapego <is...@gridgain.com>
Authored: Thu Dec 22 19:14:10 2016 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Thu Dec 22 19:14:10 2016 +0300

----------------------------------------------------------------------
 .../core/include/ignite/cache/query/continuous/continuous_query.h  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/848bb663/modules/platforms/cpp/core/include/ignite/cache/query/continuous/continuous_query.h
----------------------------------------------------------------------
diff --git a/modules/platforms/cpp/core/include/ignite/cache/query/continuous/continuous_query.h b/modules/platforms/cpp/core/include/ignite/cache/query/continuous/continuous_query.h
index 563b11a..4bd9c46 100644
--- a/modules/platforms/cpp/core/include/ignite/cache/query/continuous/continuous_query.h
+++ b/modules/platforms/cpp/core/include/ignite/cache/query/continuous/continuous_query.h
@@ -204,7 +204,7 @@ namespace ignite
                      */
                     void SetListener(Reference<event::CacheEntryEventListener<K, V>> lsnr)
                     {
-                        impl.Get()->SetListener(val);
+                        impl.Get()->SetListener(lsnr);
                     }
 
                     /**