printer.cpp: In function 'int main()':
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
47 | rep(j,0, min(arr[i-1].size(), arr[i].size())){
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:47:7: note: in expansion of macro 'rep'
47 | rep(j,0, min(arr[i-1].size(), arr[i].size())){
| ^~~
printer.cpp:37:10: warning: unused variable 'len' [-Wunused-variable]
37 | int len=arr[i].size();
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
60 | rep(j,0,arr[i].size()){
| ~~~~~~~~~~~~~~~~~
printer.cpp:60:7: note: in expansion of macro 'rep'
60 | rep(j,0,arr[i].size()){
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
68 | rep(j,0, min(prev.size(), arr[i].size())){
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:68:7: note: in expansion of macro 'rep'
68 | rep(j,0, min(prev.size(), arr[i].size())){
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
72 | rep(j,0, prev.size()-same) {
| ~~~~~~~~~~~~~~~~~~~~~
printer.cpp:72:7: note: in expansion of macro 'rep'
72 | rep(j,0, prev.size()-same) {
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
75 | rep(j,same, arr[i].size()){
| ~~~~~~~~~~~~~~~~~~~~~
printer.cpp:75:7: note: in expansion of macro 'rep'
75 | rep(j,same, arr[i].size()){
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
87 | rep(k,0, min(prev.size(), arr[j].size())){
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:87:7: note: in expansion of macro 'rep'
87 | rep(k,0, min(prev.size(), arr[j].size())){
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
91 | rep(k,0, prev.size()-same) {
| ~~~~~~~~~~~~~~~~~~~~~
printer.cpp:91:7: note: in expansion of macro 'rep'
91 | rep(k,0, prev.size()-same) {
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
94 | rep(k,same, arr[j].size()){
| ~~~~~~~~~~~~~~~~~~~~~
printer.cpp:94:7: note: in expansion of macro 'rep'
94 | rep(k,same, arr[j].size()){
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
106 | rep(k,0, min(prev.size(), arr[j].size())){
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:106:7: note: in expansion of macro 'rep'
106 | rep(k,0, min(prev.size(), arr[j].size())){
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
110 | rep(k,0, prev.size()-same) {
| ~~~~~~~~~~~~~~~~~~~~~
printer.cpp:110:7: note: in expansion of macro 'rep'
110 | rep(k,0, prev.size()-same) {
| ^~~
printer.cpp:8:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
8 | #define rep(i,a,b) for(int i=a; i<b; i++)
......
113 | rep(k,same, arr[j].size()){
| ~~~~~~~~~~~~~~~~~~~~~
printer.cpp:113:7: note: in expansion of macro 'rep'
113 | rep(k,same, arr[j].size()){
| ^~~
printer.cpp: In function 'void setIO(std::string, int)':
printer.cpp:13:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
13 | freopen((name + ".in").c_str(), "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:14:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
14 | freopen((name + ".out").c_str(), "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~