mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
Bug 383773 - __int64 is not detected as valid type with MSVC toolchain
This commit is contained in:
parent
0630a81374
commit
1b2b5e5cd4
1 changed files with 7 additions and 0 deletions
|
@ -35,6 +35,13 @@ public class WinDiscoveredPathInfo implements IDiscoveredPathInfo {
|
||||||
symbols.put("__unaligned", "");
|
symbols.put("__unaligned", "");
|
||||||
symbols.put("__uptr", "");
|
symbols.put("__uptr", "");
|
||||||
symbols.put("__w64", "");
|
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() {
|
public IPath[] getIncludePaths() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue