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

View file

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