| Index: src/inspector/StringUtil.cpp
|
| diff --git a/src/inspector/StringUtil.cpp b/src/inspector/StringUtil.cpp
|
| index 46feb6fafc1266ed3528ca745672a4b543a8be0f..04b9e85c8f471566541cc27f5fb0d7b2f46e9fa1 100644
|
| --- a/src/inspector/StringUtil.cpp
|
| +++ b/src/inspector/StringUtil.cpp
|
| @@ -107,7 +107,7 @@ std::unique_ptr<protocol::Value> toProtocolValue(v8::Local<v8::Context> context,
|
| v8::Local<v8::Value> value,
|
| int maxDepth) {
|
| if (value.IsEmpty()) {
|
| - NOTREACHED();
|
| + UNREACHABLE();
|
| return nullptr;
|
| }
|
|
|
| @@ -172,7 +172,7 @@ std::unique_ptr<protocol::Value> toProtocolValue(v8::Local<v8::Context> context,
|
| }
|
| return std::move(jsonObject);
|
| }
|
| - NOTREACHED();
|
| + UNREACHABLE();
|
| return nullptr;
|
| }
|
|
|
|
|