1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 08:46:02 +02:00

Bug 383773 - __int64 is not detected as valid type with MSVC toolchain

This commit is contained in:
Marc-Andre Laperle 2012-11-17 14:45:49 -05:00
parent 0630a81374
commit 1b2b5e5cd4

View file

@ -35,6 +35,13 @@ public class WinDiscoveredPathInfo implements IDiscoveredPathInfo {
symbols.put("__unaligned", "");
symbols.put("__uptr", "");
symbols.put("__w64", "");
// Redefine some things so that the CDT parser can handle them, until there is a VC specific parser
symbols.put("__forceinline", "__inline");
symbols.put("__int8", "char");
symbols.put("__int16", "short");
symbols.put("__int32", "int");
symbols.put("__int64", "long long");
}
public IPath[] getIncludePaths() {