0_0_38328373_28601.cpp: In member function 'bool Other_Bignum::LL::absless(const Other_Bignum::LL&) const':
0_0_38328373_28601.cpp:86:19: error: expected unqualified-id before '[' token
auto &[s1, v1] = b;
^
0_0_38328373_28601.cpp:86:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:87:40: error: 'v1' was not declared in this scope
int len = v.size(), len1 = v1.size();
^
0_0_38328373_28601.cpp: In member function 'Other_Bignum::LL Other_Bignum::LL::operator+(const Other_Bignum::LL&) const':
0_0_38328373_28601.cpp:168:19: error: expected unqualified-id before '[' token
auto &[sb, vb] = b;
^
0_0_38328373_28601.cpp:168:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:169:24: error: 'sb' was not declared in this scope
if (sgn != sb)
^
0_0_38328373_28601.cpp:172:19: error: expected unqualified-id before '[' token
auto &[sr, vr] = r;
^
0_0_38328373_28601.cpp:172:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:173:22: error: 'vr' was not declared in this scope
int lr = vr.size(), lb = vb.size();
^
0_0_38328373_28601.cpp:174:22: error: 'lb' was not declared in this scope
if (lr < lb)
^
0_0_38328373_28601.cpp:177:33: error: 'lb' was not declared in this scope
for (int i = 0; i < lb; ++i)
^
0_0_38328373_28601.cpp:179:32: error: 'vb' was not declared in this scope
car += vr[i] + vb[i] - base;
^
0_0_38328373_28601.cpp:183:26: error: 'lb' was not declared in this scope
for (int i = lb; car && i < lr; ++i)
^
0_0_38328373_28601.cpp: In member function 'Other_Bignum::LL& Other_Bignum::LL::sub(const Other_Bignum::LL&)':
0_0_38328373_28601.cpp:195:19: error: expected unqualified-id before '[' token
auto &[sb, vb] = b;
^
0_0_38328373_28601.cpp:195:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:196:31: error: 'vb' was not declared in this scope
int bor = 0, lb = vb.size();
^
0_0_38328373_28601.cpp: In member function 'Other_Bignum::LL Other_Bignum::LL::operator*(const Other_Bignum::LL&) const':
0_0_38328373_28601.cpp:229:19: error: expected unqualified-id before '[' token
auto &[sb, vb] = b;
^
0_0_38328373_28601.cpp:229:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:230:38: error: 'vb' was not declared in this scope
int len = v.size(), lb = vb.size();
^
0_0_38328373_28601.cpp:232:19: error: expected unqualified-id before '[' token
auto &[sr, vr] = r;
^
0_0_38328373_28601.cpp:232:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:233:13: error: 'vr' was not declared in this scope
vr.resize(len + lb);
^
0_0_38328373_28601.cpp:247:13: error: 'sr' was not declared in this scope
sr = sgn * sb;
^
0_0_38328373_28601.cpp:247:24: error: 'sb' was not declared in this scope
sr = sgn * sb;
^
0_0_38328373_28601.cpp: In member function 'Other_Bignum::LL& Other_Bignum::LL::submul(const Other_Bignum::LL&, int, int)':
0_0_38328373_28601.cpp:255:19: error: expected unqualified-id before '[' token
auto &[sb, vb] = b;
^
0_0_38328373_28601.cpp:255:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:256:22: error: 'vb' was not declared in this scope
int lb = vb.size();
^
0_0_38328373_28601.cpp: In member function 'Other_Bignum::LL Other_Bignum::LL::divmod(const Other_Bignum::LL&, Other_Bignum::LL&) const':
0_0_38328373_28601.cpp:277:19: error: expected unqualified-id before '[' token
auto &[sb, vb] = b;
^
0_0_38328373_28601.cpp:277:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:279:19: error: expected unqualified-id before '[' token
auto &[sd, vd] = d;
^
0_0_38328373_28601.cpp:279:19: error: expected initializer before '[' token
0_0_38328373_28601.cpp:280:22: error: 'vb' was not declared in this scope
int lb = vb.size(), len = v.size();
^
0_0_38328373_28601.cpp:281:13: error: 'vd' was not declared in this scope
vd.resize(len - lb + 1);
^
0_0_38328373_28601.cpp:281:23: error: 'len' was not declared in this scope
vd.resize(len - lb + 1);
^
0_0_38328373_28601.cpp:285:52: error: 'j' was not declared in this scope
for (int i = len - 1, j = ld - 1; 0 <= j && j <= len;)
^
|