Is #663 - Add language limit for 'Haiku' gcc 2.95

This commit is contained in:
Geoff McLane 2017-12-25 03:25:29 +01:00
parent 723c28afb3
commit a33520ad85
1 changed files with 2 additions and 1 deletions

View File

@ -22,12 +22,13 @@
/**
* This structure type provides universal access to all of Tidy's strings.
* Note arbitrary limit of 256, to be changed if more...
*/
typedef struct {
Bool manually_set;
languageDefinition *currentLanguage;
languageDefinition *fallbackLanguage;
languageDefinition *languages[];
languageDefinition *languages[256];
} tidyLanguagesType;