-
[Qt] Qt5.3.2 not enough actual parameters for macro 'min' 해결일상 | Daily Life/잡기장 | Notebook 2019. 10. 15. 09:47
1. 증상
1-1. Qt5.3.2 설치 후, not enough actual parameters for macro 'min' 에러메시지
2. 해결 방법 1
2-1. 경로 : C:\Qt\Qt5.3.2\5.3\msvc2013_64_opengl\include\QtCore
2-2. 파일 : qdatetime.h 파일 수정
static inline qint64 nullJd() { return std::numeric_limits<qint64>::min(); }
위 코드를 아래와 같이 변경
static inline qint64 nullJd() { return (std::numeric_limits<qint64>::min)(); }
3. 해결 방법 2
3-1. 아래 파일 다운로드 후, 해당 경로의 파일 변경
'일상 | Daily Life > 잡기장 | Notebook' 카테고리의 다른 글
[자동차검사] 교통안전공단 서수원자동차검사소 (0) 2019.11.21 [파일변환] convert .po to .xlsx (번역 -> 엑셀 파일 변환) (0) 2019.11.06 [FileZilla server] Could not load TLS libraties, Aborting start of administration interface (0) 2019.10.07 [지방행정인허가데이터] 지방행정인허가데이터 MSSQL 테이블 삽입 (0) 2019.09.29 [신세계상품권] 신세계상품권 SSG 머니로 전환 (0) 2019.09.28 댓글