Commit cf09a5a1 authored by svenpanne's avatar svenpanne Committed by Commit bot

Avoid MSVC's C6282 warning (assignment of constant in Boolean context).

By courtesy of /analyze... :-}

Review URL: https://codereview.chromium.org/846223002

Cr-Commit-Position: refs/heads/master@{#26032}
parent 0782cdae
......@@ -3157,7 +3157,8 @@ class AstVisitor BASE_EMBEDDED {
if (stack_overflow_) return true; \
StackLimitCheck check(zone_->isolate()); \
if (!check.HasOverflowed()) return false; \
return (stack_overflow_ = true); \
stack_overflow_ = true; \
return true; \
} \
\
private: \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment