Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/third_party/utf8-decoder/utf8-decoder.h')
-rw-r--r--deps/v8/src/third_party/utf8-decoder/utf8-decoder.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/deps/v8/src/third_party/utf8-decoder/utf8-decoder.h b/deps/v8/src/third_party/utf8-decoder/utf8-decoder.h
index 5668e5ad9ed..c91afa7c5df 100644
--- a/deps/v8/src/third_party/utf8-decoder/utf8-decoder.h
+++ b/deps/v8/src/third_party/utf8-decoder/utf8-decoder.h
@@ -67,7 +67,6 @@ static inline void Decode(uint8_t byte, State* state, uint32_t* buffer) {
0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, // 4-byte mid/high = 96
};
- DCHECK_NE(*state, State::kReject);
uint8_t type = transitions[byte];
*state = static_cast<State>(states[*state + type]);
*buffer = (*buffer << 6) | (byte & (0x7F >> (type >> 1)));