File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
runtime/druntime/src/core/stdcpp Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -852,6 +852,7 @@ void registerPredefinedTargetVersions() {
852
852
if (triple.getEnvironment () == llvm::Triple::Android) {
853
853
VersionCondition::addPredefinedGlobalIdent (" Android" );
854
854
VersionCondition::addPredefinedGlobalIdent (" CRuntime_Bionic" );
855
+ VersionCondition::addPredefinedGlobalIdent (" CppRuntime_Clang" );
855
856
} else if (triple.isMusl ()) {
856
857
VersionCondition::addPredefinedGlobalIdent (" CRuntime_Musl" );
857
858
VersionCondition::addPredefinedGlobalIdent (" CppRuntime_Gcc" );
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ extern (C++, "std")
39
39
{
40
40
@nogc :
41
41
// /
42
- this () { super (" bad allocation" , 1 ); }
42
+ extern ( D ) this () { super (" bad allocation" , 1 ); }
43
43
}
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments