[에러 메세지]
ACCESS_MASK is ambiguous
[해결 방안]
opencv의 헤더 파일을 기존 헤더 파일보다 우선시 include 시에 문제가 생김
아래와 같이 #include의 위치를 수정하여 해결
#include "stdafx.h"
#include "AIpoker.h"
#include "AIpokerDlg.h"
#include "afxdialogex.h"
#include <opencv2/core/core.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui/highgui.hpp>
using namespace cv;
#include <iostream>
using namespace std;
[참고]
(C2870 ambiguous symbol error) http://stackoverflow.com/questions/39348845/c2870-ambiguous-symbol-error'Programming > Error Message' 카테고리의 다른 글
LNK2001 unresolved external symbol "struct HWND__ * hCommWnd" (?hCommWnd@@3PAUHWND__@@A) (0) | 2017.04.28 |
---|---|
Run-Time Check Failure #2 - Stack around the variable 'a' was corrupted. (0) | 2017.02.28 |
[빌드] error: storage class specified for parameter (0) | 2017.02.13 |
[포팅] Error LNK1104 cannot open file 'kernel32.lib' (0) | 2017.01.20 |
[포팅] Error RC1015 cannot open include file 'winres.h' (0) | 2017.01.20 |