Skip to content

Commit 14d2025

Browse files
author
Mark Final
committed
Opus 050 support
1 parent 7bc9d87 commit 14d2025

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Breakpad/r1073/Breakpad.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public BreakpadClientStaticLibrary()
1010
this.headers.Include(this, "src", "src", "client", "windows", "handler", "*.h");
1111
}
1212

13-
class SourceFiles : C.CPlusPlus.ObjectFileCollection
13+
class SourceFiles : C.Cxx.ObjectFileCollection
1414
{
1515
public SourceFiles()
1616
{
@@ -34,8 +34,8 @@ void SourceFiles_UpdateOptions2(Opus.Core.IModule module, Opus.Core.Target targe
3434
compilerOptions.Defines.Add("STATUS_INVALID_PARAMETER=0xC000000DL");
3535
}
3636

37-
C.ICPlusPlusCompilerOptions cxxCompilerOptions = module.Options as C.ICPlusPlusCompilerOptions;
38-
cxxCompilerOptions.ExceptionHandler = C.CPlusPlus.EExceptionHandler.Asynchronous;
37+
C.ICxxCompilerOptions cxxCompilerOptions = module.Options as C.ICxxCompilerOptions;
38+
cxxCompilerOptions.ExceptionHandler = C.Cxx.EExceptionHandler.Asynchronous;
3939

4040
#if true
4141
#else
@@ -78,7 +78,7 @@ public BreakpadServerStaticLibrary()
7878
this.headers.Include(this, "src", "src", "client", "windows", "crash_generation", "*.h");
7979
}
8080

81-
class SourceFiles : C.CPlusPlus.ObjectFileCollection
81+
class SourceFiles : C.Cxx.ObjectFileCollection
8282
{
8383
public SourceFiles()
8484
{
@@ -95,8 +95,8 @@ void SourceFiles_UpdateOptions2(Opus.Core.IModule module, Opus.Core.Target targe
9595
{
9696
C.ICCompilerOptions compilerOptions = module.Options as C.ICCompilerOptions;
9797

98-
C.ICPlusPlusCompilerOptions cxxCompilerOptions = module.Options as C.ICPlusPlusCompilerOptions;
99-
cxxCompilerOptions.ExceptionHandler = C.CPlusPlus.EExceptionHandler.Asynchronous;
98+
C.ICxxCompilerOptions cxxCompilerOptions = module.Options as C.ICxxCompilerOptions;
99+
cxxCompilerOptions.ExceptionHandler = C.Cxx.EExceptionHandler.Asynchronous;
100100

101101
#if true
102102
#else

0 commit comments

Comments
 (0)