You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/12/05 12:38:20 UTC

[16/52] ignite git commit: IGNITE-4299: ODBC Minor example fix. This closes #1277.

IGNITE-4299: ODBC Minor example fix. This closes #1277.


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

Branch: refs/heads/master
Commit: d5dc5815416cc13f7b2b8a323fa5a39ec95ecb95
Parents: 4a758d1
Author: isapego <ig...@gmail.com>
Authored: Thu Nov 24 15:53:35 2016 +0300
Committer: devozerov <vo...@gridgain.com>
Committed: Thu Nov 24 15:53:35 2016 +0300

----------------------------------------------------------------------
 .../cpp/examples/putget-example/src/putget_example.cpp       | 2 +-
 .../cpp/examples/query-example/src/query_example.cpp         | 8 +-------
 2 files changed, 2 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/d5dc5815/modules/platforms/cpp/examples/putget-example/src/putget_example.cpp
----------------------------------------------------------------------
diff --git a/modules/platforms/cpp/examples/putget-example/src/putget_example.cpp b/modules/platforms/cpp/examples/putget-example/src/putget_example.cpp
index 0b57886..8bf9c8c 100644
--- a/modules/platforms/cpp/examples/putget-example/src/putget_example.cpp
+++ b/modules/platforms/cpp/examples/putget-example/src/putget_example.cpp
@@ -117,7 +117,7 @@ int main()
     }
 
     std::cout << std::endl;
-    std::cout << ">>> Example finished, press any key to exit ..." << std::endl;
+    std::cout << ">>> Example finished, press 'Enter' to exit ..." << std::endl;
     std::cout << std::endl;
 
     std::cin.get();

http://git-wip-us.apache.org/repos/asf/ignite/blob/d5dc5815/modules/platforms/cpp/examples/query-example/src/query_example.cpp
----------------------------------------------------------------------
diff --git a/modules/platforms/cpp/examples/query-example/src/query_example.cpp b/modules/platforms/cpp/examples/query-example/src/query_example.cpp
index 8b8d008..9524100 100644
--- a/modules/platforms/cpp/examples/query-example/src/query_example.cpp
+++ b/modules/platforms/cpp/examples/query-example/src/query_example.cpp
@@ -416,12 +416,6 @@ int main()
         // Populate cache.
         Initialize();
 
-        std::cout << std::endl;
-        std::cout << ">>> Ready" << std::endl;
-        std::cout << std::endl;
-
-        std::cin.get();
-
         // Example for SCAN-based query based on a predicate.
         DoScanQuery();
 
@@ -456,7 +450,7 @@ int main()
     }
 
     std::cout << std::endl;
-    std::cout << ">>> Example finished, press any key to exit ..." << std::endl;
+    std::cout << ">>> Example finished, press 'Enter' to exit ..." << std::endl;
     std::cout << std::endl;
 
     std::cin.get();