asmaloney/libE57Format

MinGW fails to compile due to warnings

オープン

#247 opened on 2023/04/21

 (2 件のコメント) (0 件のリアクション) (0 人の担当者)C++ (82 件のフォーク)auto 404
bughelp wanted

Repository metrics

Stars
 (187 個のスター)
PR merge metrics
 (PR metrics pending)

説明

(From here: https://github.com/asmaloney/libE57Format/issues/245#issuecomment-1518088249)

I think his fix in CRCpp (which is what I used here) won't work for MinGW.

@UshnaGul - can you try changing the checks in CheckedFile.cpp from

#if defined( WIN32 ) || defined( _WIN32 ) || defined( WINCE )

to

#if defined( _MSC_VER )

That should turn off the pragmas MinGW doesn't understand. Not sure if it will throw other errors though.

コントリビューターガイド