| # | Line 48 | Line 48 | struct ModPackage | |
|---|---|---|
| 48 | cout << " Readme: " << readme << "\n"; | |
| 49 | cout << "\n"; | |
| 50 | } | |
| 51 | < | |
| 52 | < | bool operator < (const ModPackage &fs) | 
| 51 | > | |
| 52 | > | bool operator < (const ModPackage &fs) const | 
| 53 | { return (name < fs.name);} | |
| 54 | ||
| 55 | < | bool operator > (const ModPackage &fs) | 
| 55 | > | bool operator > (const ModPackage &fs) const | 
| 56 | { return (name > fs.name);} | |
| 57 | ||
| 58 | < | bool operator == (const ModPackage &fs) | 
| 58 | > | bool operator == (const ModPackage &fs) const | 
| 59 | { return (name == fs.name);} | |
| 60 | }; | |
| 61 | ||
| – | Removed lines | 
| + | Added lines | 
| < | Changed lines (old) | 
| > | Changed lines (new) |