File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,10 @@ class AnyRequestBase {
145
145
AnyRequestBase (const AnyRequestBase &other) {
146
146
vtableAndKind = other.vtableAndKind ;
147
147
}
148
+ AnyRequestBase &operator =(const AnyRequestBase &other) {
149
+ vtableAndKind = other.vtableAndKind ;
150
+ return *this ;
151
+ }
148
152
149
153
private:
150
154
Derived &asDerived () {
Original file line number Diff line number Diff line change 2
2
// RUN: not %target-run %t_scudo-binary 2>&1 | %FileCheck %s
3
3
// REQUIRES: executable_test
4
4
// REQUIRES: OS=linux-gnu
5
+ // REQUIRES: scudo_runtime
5
6
6
7
let allocated = UnsafeMutableRawPointer . allocate ( byteCount: 128 , alignment: 1 )
7
8
allocated. deallocate ( )
Original file line number Diff line number Diff line change @@ -1535,6 +1535,7 @@ runtime_libs = {
1535
1535
'profile' : 'profile_runtime' ,
1536
1536
'asan' : 'asan_runtime' ,
1537
1537
'ubsan' : 'ubsan_runtime' ,
1538
+ 'scudo' : 'scudo_runtime' ,
1538
1539
'safestack' : 'safestack_runtime' ,
1539
1540
'fuzzer' : 'fuzzer_runtime'
1540
1541
}
You can’t perform that action at this time.
0 commit comments