| Index: runtime/vm/log.cc
|
| diff --git a/runtime/vm/log.cc b/runtime/vm/log.cc
|
| index c62d8e56584b4c9004bfbb5499f818c1b9243639..5bb984222e94a902b5b44d41fe529e9779589f7d 100644
|
| --- a/runtime/vm/log.cc
|
| +++ b/runtime/vm/log.cc
|
| @@ -118,7 +118,7 @@ void Log::DisableManualFlush() {
|
|
|
|
|
| LogBlock::LogBlock(Thread* thread, Log* log)
|
| - : StackResource(thread->isolate()),
|
| + : StackResource(thread),
|
| log_(log), cursor_(log->cursor()) {
|
| CommonConstructor();
|
| }
|
| @@ -132,7 +132,7 @@ LogBlock::LogBlock(Isolate* isolate)
|
|
|
|
|
| LogBlock::LogBlock(Thread* thread)
|
| - : StackResource(thread->isolate()),
|
| + : StackResource(thread),
|
| log_(thread->isolate()->Log()),
|
| cursor_(thread->isolate()->Log()->cursor()) {
|
| CommonConstructor();
|
|
|