| Index: src/base/logging.h
|
| diff --git a/src/base/logging.h b/src/base/logging.h
|
| index 7bbb82a485d34d727edb3da86c11607d1c003a95..4de8b537cbd131f20ffe246f5c0ec98a734c3a68 100644
|
| --- a/src/base/logging.h
|
| +++ b/src/base/logging.h
|
| @@ -141,11 +141,6 @@ DEFINE_CHECK_OP_IMPL(GT, > )
|
| #define CHECK_NOT_NULL(val) CHECK((val) != nullptr)
|
| #define CHECK_IMPLIES(lhs, rhs) CHECK(!(lhs) || (rhs))
|
|
|
| -
|
| -// Exposed for making debugging easier (to see where your function is being
|
| -// called, just add a call to DumpBacktrace).
|
| -void DumpBacktrace();
|
| -
|
| } // namespace base
|
| } // namespace v8
|
|
|
|
|