PRIVATE: code convention fixes

This commit is contained in:
neuromancer 2021-02-20 14:55:56 -03:00 committed by Eugene Sandulenko
parent 750eeeb85f
commit de9309bb04
2 changed files with 15 additions and 15 deletions

View file

@ -240,7 +240,7 @@ Common::Error PrivateEngine::run() {
break;
default:
break;
break;
}
}

View file

@ -56,24 +56,24 @@ typedef Common::Queue<Common::Rect *> RectQueue;
class SymbolMaps {
private:
StringQueue stringToDefine;
RectQueue rectToDefine;
StringQueue stringToDefine;
RectQueue rectToDefine;
public:
SymbolMap settings;
SymbolMap variables;
SymbolMap cursors;
SymbolMap locations;
SymbolMap rects;
ConstantList constants;
SymbolMap settings;
SymbolMap variables;
SymbolMap cursors;
SymbolMap locations;
SymbolMap rects;
ConstantList constants;
NameList variableList;
NameList locationList;
NameList variableList;
NameList locationList;
Symbol *constant(int t, int d, char *s);
Symbol *lookupName(char *n);
void installAll(char *n);
void defineSymbol(char *, Common::Rect *);
Symbol *constant(int t, int d, char *s);
Symbol *lookupName(char *n);
void installAll(char *n);
void defineSymbol(char *, Common::Rect *);
};
} // End of namespace Private