You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the capitalization of the includes directive, MinGW errors out when cross-compiling on Linux targeting Windows. Fortunately this is the only instance this problem, as all other instances of #include <windows.h> in csv-parser are lowercase.
The text was updated successfully, but these errors were encountered:
When cross-compiling with MinGW, the compiler is unable to find the
include of Windows.h because windows.h is provided instead.
Replacing the includes of Windows.h with windows.h solves the issue
and still works on Windows because the filesystem is case insensitive.
csv-parser/include/internal/common.hpp
Line 16 in 9d5f796
Due to the capitalization of the includes directive, MinGW errors out when cross-compiling on Linux targeting Windows. Fortunately this is the only instance this problem, as all other instances of
#include <windows.h>
in csv-parser are lowercase.The text was updated successfully, but these errors were encountered: