| Index: runtime/vm/handles.h
|
| diff --git a/runtime/vm/handles.h b/runtime/vm/handles.h
|
| index 5e07d6eb2f2f0728aa0d97fadedeb40ff734e8fc..aab078cb92c6d91c5ca004a11dfa54f77ac99a06 100644
|
| --- a/runtime/vm/handles.h
|
| +++ b/runtime/vm/handles.h
|
| @@ -61,7 +61,6 @@ class ObjectPointerVisitor;
|
| class Thread;
|
|
|
| DECLARE_FLAG(bool, verify_handles);
|
| -DECLARE_DEBUG_FLAG(bool, trace_handles);
|
|
|
| class HandleVisitor {
|
| public:
|
| @@ -257,12 +256,10 @@ class VMHandles : public Handles<kVMHandleSizeInWords,
|
| VMHandles() : Handles<kVMHandleSizeInWords,
|
| kVMHandlesPerChunk,
|
| kOffsetOfRawPtr>() {
|
| -#ifdef DEBUG
|
| if (FLAG_trace_handles) {
|
| OS::PrintErr("*** Starting a new VM handle block 0x%" Px "\n",
|
| reinterpret_cast<intptr_t>(this));
|
| }
|
| -#endif
|
| }
|
| ~VMHandles();
|
|
|
|
|