mirror of
https://github.com/opencv/opencv.git
synced 2024-12-02 16:00:17 +08:00
17 lines
387 B
C++
17 lines
387 B
C++
#ifdef __GNUC__
|
|
# pragma GCC diagnostic ignored "-Wmissing-declarations"
|
|
# if defined __clang__ || defined __APPLE__
|
|
# pragma GCC diagnostic ignored "-Wmissing-prototypes"
|
|
# pragma GCC diagnostic ignored "-Wextra"
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef OPENCV_TEST_PRECOMP_HPP
|
|
#define OPENCV_TEST_PRECOMP_HPP
|
|
|
|
#include "opencv2/ts.hpp"
|
|
#include "opencv2/flann.hpp"
|
|
#include <iostream>
|
|
|
|
#endif
|