mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
Исправляем ошибку тире вместо числа в телеге
This commit is contained in:
@@ -205,11 +205,11 @@ class BinaryExprAST : public ExprAST {
|
||||
|
||||
if (!lhs->isDecimal || !rhs->isDecimal) {
|
||||
if (lhs->isDecimal)
|
||||
lhsStr = lhs->valD;
|
||||
lhsStr = (String)lhs->valD;
|
||||
else
|
||||
lhsStr = lhs->valS;
|
||||
if (rhs->isDecimal)
|
||||
rhsStr = rhs->valD;
|
||||
rhsStr = (String)rhs->valD;
|
||||
else
|
||||
rhsStr = rhs->valS;
|
||||
switch (Op) {
|
||||
|
||||
Reference in New Issue
Block a user