parent
c169793d47
commit
9dd2cb91c6
@ -1,20 +0,0 @@
|
||||
--- libqalculate/Calculator.cc.orig 2018-05-15 00:14:33.000000000 -0400
|
||||
+++ libqalculate/Calculator.cc 2018-05-18 18:05:14.646690898 -0400
|
||||
@@ -5537,7 +5537,7 @@
|
||||
return true;
|
||||
}
|
||||
if((i = str.find_first_of(LESS GREATER EQUALS NOT, 0)) != string::npos) {
|
||||
- while((i != string::npos && (str[i] == LESS_CH && i + 1 < str.length() && str[i + 1] == LESS_CH)) || (str[i] == GREATER_CH && i + 1 < str.length() && str[i + 1] == GREATER_CH)) {
|
||||
+ while(i != string::npos && ((str[i] == LESS_CH && i + 1 < str.length() && str[i + 1] == LESS_CH) || (str[i] == GREATER_CH && i + 1 < str.length() && str[i + 1] == GREATER_CH))) {
|
||||
i = str.find_first_of(LESS GREATER NOT EQUALS, i + 2);
|
||||
}
|
||||
}
|
||||
@@ -5552,7 +5552,7 @@
|
||||
}
|
||||
MathOperation s = OPERATION_ADD;
|
||||
while(!c) {
|
||||
- while((i != string::npos && (str[i] == LESS_CH && i + 1 < str.length() && str[i + 1] == LESS_CH)) || (str[i] == GREATER_CH && i + 1 < str.length() && str[i + 1] == GREATER_CH)) {
|
||||
+ while(i != string::npos && ((str[i] == LESS_CH && i + 1 < str.length() && str[i + 1] == LESS_CH) || (str[i] == GREATER_CH && i + 1 < str.length() && str[i + 1] == GREATER_CH))) {
|
||||
i = str.find_first_of(LESS GREATER NOT EQUALS, i + 2);
|
||||
while(i != string::npos && str[i] == NOT_CH && str.length() > i + 1 && str[i + 1] == NOT_CH) {
|
||||
i++;
|
@ -1 +1 @@
|
||||
SHA512 (libqalculate-2.6.0b.tar.gz) = 975de42d16912dbdf7e0d6e7b6e051ba21b5bf0ae053f7578c6b1ea8d7aa5103a35c422a84da8a77292e55d757fdb64e6127091540b2b1a1c77fcb2fee562a57
|
||||
SHA512 (libqalculate-2.6.1.tar.gz) = d6e943c016a9c4d9a437f5ff52472cb7cb0b3a0799e3a6d599a82366fdfa537d0fe1fab8add56e0ee18b39a08926009bff650f5b6446126db2765c633da2963e
|
||||
|
Loading…
Reference in new issue