Skip to content

Commit b9372f1

Browse files
authored
Merge pull request #1516 from andreast271/mingw-D__int64-workaround
Temporary fix for definition of __int64 by mingw compiler.
2 parents 9940370 + f8ca7e2 commit b9372f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/config.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ bool configt::set(const cmdlinet &cmdline)
862862
#endif
863863

864864
// MinGW has extra defines
865-
ansi_c.defines.push_back("__int64=\"long long\"");
865+
ansi_c.defines.push_back("__int64=long long");
866866
}
867867
else
868868
{

0 commit comments

Comments
 (0)