Rename outp to outptr to avoid name clash with MSVC#27
Rename outp to outptr to avoid name clash with MSVC#27whizzter wants to merge 1 commit intodrh:masterfrom
Conversation
|
where does MSVC use outp ? that's a C namespace violation |
|
Ok investigated it a bit more, made a minimal test case and found out that it seems to be a compiler bug inside MSVC 2008 and forward (2005 compiles fine). If compiling the file as a C file (renaming the file to .cpp makes it compile again for some reason) this minimal example will produce an error.
Chatted with a few guys while testing and we suspect that the outp (x86 port output function) has been made an intrinsic and that intrinsic is somehow buggy when compiling as a C file with MSVC (the symbol for outp is defined in conio.h but the error persists regardless of if the file is included) Then the question is, do we try to work around this compiler bug or do we just ignore people using MSVC? |
No description provided.