This commit is contained in:
thrust26 2020-01-21 21:08:17 +01:00
commit 0e44e9ce67
1 changed files with 5 additions and 0 deletions

View File

@ -89,6 +89,11 @@ class Bankswitch
static bool isValidRomName(const FilesystemNode& name);
static bool isValidRomName(const string& name);
// Output operator
friend ostream& operator<<(ostream& os, const Bankswitch::Type& t) {
return os << typeToName(t);
}
private:
struct TypeComparator {
bool operator() (const string& a, const string& b) const {