| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 8203)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -2288,7 +2288,8 @@
|
| // An object finder visitor interface.
|
| class FindRawCodeVisitor : public FindObjectVisitor {
|
| public:
|
| - explicit FindRawCodeVisitor(uword pc) : pc_(pc) { }
|
| + explicit FindRawCodeVisitor(uword pc)
|
| + : FindObjectVisitor(Isolate::Current()), pc_(pc) { }
|
| virtual ~FindRawCodeVisitor() { }
|
|
|
| // Check if object matches find condition.
|
|
|