提交 1bc1e8c6 编写于 作者: T Terry J Myers 提交者: Me No Dev

Update WString.cpp (#1936)

上级 2132d9f8
......@@ -882,6 +882,12 @@ float String::toFloat(void) const
return 0;
}
double String::toDouble(void) const {
if (buffer) {
return atof(buffer);
}
return 0;
}
unsigned char String::equalsConstantTime(const String &s2) const {
// To avoid possible time-based attacks present function
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册