mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-30 20:09:14 +03:00
Merge branch 'ver4dev' of https://github.com/IoTManagerProject/IoTManager into ver4dev
This commit is contained in:
@@ -205,11 +205,11 @@ class BinaryExprAST : public ExprAST {
|
|||||||
|
|
||||||
if (!lhs->isDecimal || !rhs->isDecimal) {
|
if (!lhs->isDecimal || !rhs->isDecimal) {
|
||||||
if (lhs->isDecimal)
|
if (lhs->isDecimal)
|
||||||
lhsStr = lhs->valD;
|
lhsStr = (String)lhs->valD;
|
||||||
else
|
else
|
||||||
lhsStr = lhs->valS;
|
lhsStr = lhs->valS;
|
||||||
if (rhs->isDecimal)
|
if (rhs->isDecimal)
|
||||||
rhsStr = rhs->valD;
|
rhsStr = (String)rhs->valD;
|
||||||
else
|
else
|
||||||
rhsStr = rhs->valS;
|
rhsStr = rhs->valS;
|
||||||
switch (Op) {
|
switch (Op) {
|
||||||
|
|||||||
Reference in New Issue
Block a user