Commit 8038f1bd authored by loorongjie's avatar loorongjie Committed by Commit bot

Allow constexpr function in MSVC

BUG=NO

Review-Url: https://codereview.chromium.org/2731263003
Cr-Commit-Position: refs/heads/master@{#43636}
parent 83b96b58
......@@ -22,11 +22,7 @@ const char* const Token::string_[NUM_TOKENS] = {
};
#undef T
#if !V8_CC_MSVC
// TODO(vogelheim): Remove #if once MSVC supports constexpr on functions.
constexpr
#endif
uint8_t length(const char* str) {
constexpr uint8_t length(const char* str) {
return str ? static_cast<uint8_t>(strlen(str)) : 0;
}
#define T(name, string, precedence) length(string),
......
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