This commit is contained in:
Alon Zakai 2014-11-28 10:53:49 -08:00
Родитель d29d655aac
Коммит dcc248d44e
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -2700,12 +2700,11 @@ int main(int argc, char **argv) {
fclose(f);
input[size] = 0;
char *comment = strstr(input, "//");
char *extraInfoStart = strstr(input, "// EXTRA_INFO:");
if (comment) *comment = 0; // drop off the comments; TODO: parse extra info
if (extraInfoStart) {
extraInfo = arena.alloc();
extraInfo->parse(extraInfoStart + 14);
*extraInfoStart = 0; // ignore extra info when parsing
}
if (receiveJSON) {