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;
* @function help
* @brief Display instructions to use this tutorial program
*/
void help()
static void help()
{
cout
<< "--------------------------------------------------------------------------" << endl
......
......@@ -14,7 +14,7 @@ using namespace std;
* @function help
* @brief Display instructions to use this tutorial program
*/
void help()
static void help()
{
cout
<< "--------------------------------------------------------------------------" << endl
......
......@@ -15,7 +15,7 @@ using namespace std;
* @function help
* @brief Display instructions to use this tutorial program
*/
void help()
static void help()
{
cout
<< "--------------------------------------------------------------------------" << endl
......@@ -31,7 +31,7 @@ void help()
* @function cvcloud_load
* @brief load bunny.ply
*/
Mat cvcloud_load()
static Mat cvcloud_load()
{
Mat cloud(1, 1889, CV_32FC3);
ifstream ifs("bunny.ply");
......
......@@ -15,7 +15,7 @@ using namespace std;
* @function help
* @brief Display instructions to use this tutorial program
*/
void help()
static void help()
{
cout
<< "--------------------------------------------------------------------------" << 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