mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
facedetect: Fix compiler warning with clang 3.8
Use namespace only after it was actually defined by a header. gstfacedetect.cpp:79:17: error: using directive refers to implicitly-defined namespace 'std' [-Werror] using namespace std; ^
This commit is contained in:
parent
ea7c0981ec
commit
3107f5df76
1 changed files with 2 additions and 2 deletions
|
@ -76,10 +76,10 @@
|
|||
# include <config.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include <vector>
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "gstfacedetect.h"
|
||||
#if (CV_MAJOR_VERSION >= 3)
|
||||
#include <opencv2/imgproc.hpp>
|
||||
|
|
Loading…
Reference in a new issue