Fix documentation warning

This commit is contained in:
Maksim Shabunin 2015-12-03 17:30:45 +03:00
parent 5c5d0e6743
commit 0e5c710757
2 changed files with 6 additions and 2 deletions

View File

@ -679,8 +679,8 @@ CV_EXPORTS void setUseIPP(bool flag);
//! @} core_utils
#include "opencv2/hal/neon_utils.hpp"
} // cv
#include "opencv2/hal/neon_utils.hpp"
#endif //__OPENCV_CORE_BASE_HPP__

View File

@ -44,6 +44,8 @@
#include "opencv2/hal/defs.h"
namespace cv {
#if CV_NEON
inline int32x2_t cv_vrnd_s32_f32(float32x2_t v)
@ -120,4 +122,6 @@ inline float32x2_t cv_vsqrt_f32(float32x2_t val)
#endif
}
#endif // __OPENCV_HAL_NEON_UTILS_HPP__