| Index: runtime/vm/thread.h
|
| ===================================================================
|
| --- runtime/vm/thread.h (revision 44732)
|
| +++ runtime/vm/thread.h (working copy)
|
| @@ -25,7 +25,7 @@
|
| static void InitOnce();
|
|
|
| static Thread* Current() {
|
| - return reinterpret_cast<Thread*>(OSThread::GetThreadLocal(thread_key));
|
| + return reinterpret_cast<Thread*>(OSThread::GetThreadLocal(thread_key_));
|
| }
|
| static void SetCurrent(Thread* current);
|
|
|
| @@ -42,7 +42,7 @@
|
| void set_cha(CHA* value) { cha_ = value; }
|
|
|
| private:
|
| - static ThreadLocalKey thread_key;
|
| + static ThreadLocalKey thread_key_;
|
|
|
| Isolate* isolate_;
|
| CHA* cha_;
|
|
|