mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
Fixed identifiers warns
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __OPENCV_GTESTCV_HPP__
|
||||
#define __OPENCV_GTESTCV_HPP__
|
||||
#ifndef OPENCV_GTESTCV_HPP
|
||||
#define OPENCV_GTESTCV_HPP
|
||||
|
||||
#include "opencv2/core/cvdef.h"
|
||||
#include <stdarg.h> // for va_list
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
//
|
||||
//M*/
|
||||
|
||||
#ifndef __OPENCV_CUDA_PERF_UTILITY_HPP__
|
||||
#define __OPENCV_CUDA_PERF_UTILITY_HPP__
|
||||
#ifndef OPENCV_CUDA_PERF_UTILITY_HPP
|
||||
#define OPENCV_CUDA_PERF_UTILITY_HPP
|
||||
|
||||
#include "opencv2/core.hpp"
|
||||
#include "opencv2/imgcodecs.hpp"
|
||||
@@ -125,4 +125,4 @@ namespace perf
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif // __OPENCV_CUDA_PERF_UTILITY_HPP__
|
||||
#endif // OPENCV_CUDA_PERF_UTILITY_HPP
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
//
|
||||
//M*/
|
||||
|
||||
#ifndef __OPENCV_CUDA_TEST_UTILITY_HPP__
|
||||
#define __OPENCV_CUDA_TEST_UTILITY_HPP__
|
||||
#ifndef OPENCV_CUDA_TEST_UTILITY_HPP
|
||||
#define OPENCV_CUDA_TEST_UTILITY_HPP
|
||||
|
||||
#include <stdexcept>
|
||||
#include "cvconfig.h"
|
||||
@@ -363,4 +363,4 @@ namespace cv { namespace cuda
|
||||
#endif // HAVE_CUDA
|
||||
|
||||
|
||||
#endif // __OPENCV_CUDA_TEST_UTILITY_HPP__
|
||||
#endif // OPENCV_CUDA_TEST_UTILITY_HPP
|
||||
|
||||
@@ -39,8 +39,8 @@
|
||||
//
|
||||
//M*/
|
||||
|
||||
#ifndef __OPENCV_TS_OCL_PERF_HPP__
|
||||
#define __OPENCV_TS_OCL_PERF_HPP__
|
||||
#ifndef OPENCV_TS_OCL_PERF_HPP
|
||||
#define OPENCV_TS_OCL_PERF_HPP
|
||||
|
||||
#include "ocl_test.hpp"
|
||||
#include "ts_perf.hpp"
|
||||
@@ -128,4 +128,4 @@ using namespace perf;
|
||||
} // namespace cvtest::ocl
|
||||
} // namespace cvtest
|
||||
|
||||
#endif // __OPENCV_TS_OCL_PERF_HPP__
|
||||
#endif // OPENCV_TS_OCL_PERF_HPP
|
||||
|
||||
@@ -39,8 +39,8 @@
|
||||
//
|
||||
//M*/
|
||||
|
||||
#ifndef __OPENCV_TS_OCL_TEST_HPP__
|
||||
#define __OPENCV_TS_OCL_TEST_HPP__
|
||||
#ifndef OPENCV_TS_OCL_TEST_HPP
|
||||
#define OPENCV_TS_OCL_TEST_HPP
|
||||
|
||||
#include "opencv2/opencv_modules.hpp"
|
||||
|
||||
@@ -364,4 +364,4 @@ CV_ENUM(BorderType, BORDER_CONSTANT, BORDER_REPLICATE, BORDER_REFLECT, BORDER_WR
|
||||
|
||||
} } // namespace cvtest::ocl
|
||||
|
||||
#endif // __OPENCV_TS_OCL_TEST_HPP__
|
||||
#endif // OPENCV_TS_OCL_TEST_HPP
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// Copyright (C) 2014, Intel, Inc., all rights reserved.
|
||||
// Third party copyrights are property of their respective owners.
|
||||
|
||||
#ifndef __OPENCV_TS_EXT_HPP__
|
||||
#define __OPENCV_TS_EXT_HPP__
|
||||
#ifndef OPENCV_TS_EXT_HPP
|
||||
#define OPENCV_TS_EXT_HPP
|
||||
|
||||
void checkIppStatus();
|
||||
|
||||
@@ -89,4 +89,4 @@ void checkIppStatus();
|
||||
void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody() { cv::ipp::setIppStatus(0); Body(); checkIppStatus(); } \
|
||||
void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::Body()
|
||||
|
||||
#endif // __OPENCV_TS_EXT_HPP__
|
||||
#endif // OPENCV_TS_EXT_HPP
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __OPENCV_TS_PERF_HPP__
|
||||
#define __OPENCV_TS_PERF_HPP__
|
||||
#ifndef OPENCV_TS_PERF_HPP
|
||||
#define OPENCV_TS_PERF_HPP
|
||||
|
||||
#include "opencv2/core.hpp"
|
||||
#include "ts_gtest.h"
|
||||
@@ -691,4 +691,4 @@ struct CV_EXPORTS KeypointGreater :
|
||||
void CV_EXPORTS sort(std::vector<cv::KeyPoint>& pts, cv::InputOutputArray descriptors);
|
||||
} //namespace perf
|
||||
|
||||
#endif //__OPENCV_TS_PERF_HPP__
|
||||
#endif //OPENCV_TS_PERF_HPP
|
||||
|
||||
Reference in New Issue
Block a user