| Index: src/inspector.h
|
| ===================================================================
|
| --- src/inspector.h (revision 10404)
|
| +++ src/inspector.h (working copy)
|
| @@ -41,14 +41,14 @@
|
|
|
| class Inspector {
|
| public:
|
| - static void DumpObjectType(FILE* out, Object *obj, bool print_more);
|
| - static void DumpObjectType(FILE* out, Object *obj) {
|
| + static void DumpObjectType(FILE* out, Object* obj, bool print_more);
|
| + static void DumpObjectType(FILE* out, Object* obj) {
|
| DumpObjectType(out, obj, false);
|
| }
|
| - static void DumpObjectType(Object *obj, bool print_more) {
|
| + static void DumpObjectType(Object* obj, bool print_more) {
|
| DumpObjectType(stdout, obj, print_more);
|
| }
|
| - static void DumpObjectType(Object *obj) {
|
| + static void DumpObjectType(Object* obj) {
|
| DumpObjectType(stdout, obj, false);
|
| }
|
| };
|
|
|