File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
compiler-rt/lib/scudo/standalone Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ template <class Allocator> struct TSDRegistryExT {
30
30
using ThisT = TSDRegistryExT<Allocator>;
31
31
32
32
struct ScopedTSD {
33
- ScopedTSD (ThisT &TSDRegistry) {
33
+ ALWAYS_INLINE ScopedTSD (ThisT &TSDRegistry) {
34
34
CurrentTSD = TSDRegistry.getTSDAndLock (&UnlockRequired);
35
35
DCHECK_NE (CurrentTSD, nullptr );
36
36
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ struct TSDRegistrySharedT {
29
29
using ThisT = TSDRegistrySharedT<Allocator, TSDsArraySize, DefaultTSDCount>;
30
30
31
31
struct ScopedTSD {
32
- ScopedTSD (ThisT &TSDRegistry) {
32
+ ALWAYS_INLINE ScopedTSD (ThisT &TSDRegistry) {
33
33
CurrentTSD = TSDRegistry.getTSDAndLock ();
34
34
DCHECK_NE (CurrentTSD, nullptr );
35
35
}
You can’t perform that action at this time.
0 commit comments