/in/foo.cc: In member function 'void PolyList::insert(int, int)':
/in/foo.cc:24:23: error: 'class std::vector<PolyListNode>' has no member named 'emplaceback'; did you mean 'emplace_back'?
24 | terms.emplaceback(coef,exp);
| ^~~~~~~~~~~
| emplace_back
/in/foo.cc: In member function 'void PolyList::simplify()':
/in/foo.cc:27:17: error: 'bubbleSort' was not declared in this scope; did you mean 'bubblesort'?
27 | bubbleSort();
| ^~~~~~~~~~
| bubblesort
/in/foo.cc:29:21: error: 'sizeoft' was not declared in this scope; did you mean 'size_t'?
29 | for(sizeoft i=0;i<terms.size();++i){
| ^~~~~~~
| size_t
/in/foo.cc:29:33: error: 'i' was not declared in this scope
29 | for(sizeoft i=0;i<terms.size();++i){
| ^
/in/foo.cc:30:48: error: 'term' was not declared in this scope; did you mean 'terms'?
30 | if(i==0||terms[i].exp!=term[i-1].exp){
| ^~~~
| terms
/in/foo.cc:31:42: error: 'class std::vector<PolyListNode>' has no member named 'pushback'; did you mean 'push_back'?
31 | newTerms.pushback(term[i]);
| ^~~~~~~~
| push_back
/in/foo.cc:37:37: error: 'newTerm' was not declared in this scope; did you mean 'newTerms'?
37 | for(const auto&term:newTerm){
| ^~~~~~~
| newTerms
/in/foo.cc:39:39: error: 'class std::vector<PolyListNode>' has no member named 'pushback'; did you mean 'push_back'?
39 | terms.pushback(term);
| ^~~~~~~~
| push_back
/in/foo.cc: In function 'int main()':
/in/foo.cc:62:10: error: 'inti' was not declared in this scope; did you mean 'int'?
62 | for (inti=0;i<na;++i){
| ^~~~
| int
/in/foo.cc:62:17: error: 'i' was not declared in this scope
62 | for (inti=0;i<na;++i){
| ^