Skip to content

Commit 6b47c69

Browse files
committed
fix multiple definitions of MAX_FILE_TYPE in VS-SDK
1 parent 174497e commit 6b47c69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ Version history
14011401
* now works with Visual Studio for Windows on ARM64
14021402
* installer now supports 4 parallel installations of VS 2022
14031403

1404-
2025-03-02 version 1.4.0
1404+
2025-03-09 version 1.4.0
14051405
* added separate version of dbuild.dll linked against Microsoft.Build.CPPTasks.Common for VS 17.14
14061406
* mago: fixed showing intellisense information in tool tip while debugging in VS2022
14071407
* mago: expression evaluator now resolves identifiers of named enumerator types

c2d/idl2d.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1444,9 +1444,9 @@ version(all)
14441444
{
14451445
replaceTokenSequence(tokens, "#ifndef INTEROPLIB\n[in] $ifcode\n#else\n$elsecode\n#endif", "[in] $ifcode", false);
14461446
}
1447-
if(currentModule == "textmgr120")
1447+
if(currentModule.startsWith("textmgr"))
14481448
{
1449-
// duplicate #define
1449+
// declaration in textmgr.idl is in enum
14501450
replaceTokenSequence(tokens, "#define MAX_FILE_TYPE 24", "", false);
14511451
}
14521452

0 commit comments

Comments
 (0)