Commit 44e5d263 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #7536 from alalek:viz_warn

parents 17398c1e c31f89f0
...@@ -32,7 +32,7 @@ using namespace std; ...@@ -32,7 +32,7 @@ using namespace std;
* @function help * @function help
* @brief Display instructions to use this tutorial program * @brief Display instructions to use this tutorial program
*/ */
void help() static void help()
{ {
cout cout
<< "--------------------------------------------------------------------------" << endl << "--------------------------------------------------------------------------" << endl
......
...@@ -14,7 +14,7 @@ using namespace std; ...@@ -14,7 +14,7 @@ using namespace std;
* @function help * @function help
* @brief Display instructions to use this tutorial program * @brief Display instructions to use this tutorial program
*/ */
void help() static void help()
{ {
cout cout
<< "--------------------------------------------------------------------------" << endl << "--------------------------------------------------------------------------" << endl
......
...@@ -15,7 +15,7 @@ using namespace std; ...@@ -15,7 +15,7 @@ using namespace std;
* @function help * @function help
* @brief Display instructions to use this tutorial program * @brief Display instructions to use this tutorial program
*/ */
void help() static void help()
{ {
cout cout
<< "--------------------------------------------------------------------------" << endl << "--------------------------------------------------------------------------" << endl
...@@ -31,7 +31,7 @@ void help() ...@@ -31,7 +31,7 @@ void help()
* @function cvcloud_load * @function cvcloud_load
* @brief load bunny.ply * @brief load bunny.ply
*/ */
Mat cvcloud_load() static Mat cvcloud_load()
{ {
Mat cloud(1, 1889, CV_32FC3); Mat cloud(1, 1889, CV_32FC3);
ifstream ifs("bunny.ply"); ifstream ifs("bunny.ply");
......
...@@ -15,7 +15,7 @@ using namespace std; ...@@ -15,7 +15,7 @@ using namespace std;
* @function help * @function help
* @brief Display instructions to use this tutorial program * @brief Display instructions to use this tutorial program
*/ */
void help() static void help()
{ {
cout cout
<< "--------------------------------------------------------------------------" << endl << "--------------------------------------------------------------------------" << endl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment