Revert "multiline comment by adam(gts@volconst.com)"

This reverts commit 783576d150.
This commit is contained in:
vrd
2023-04-22 13:30:30 +03:00
parent 783576d150
commit 81fc94d472
2 changed files with 10 additions and 37 deletions
+10 -34
View File
@@ -143,11 +143,11 @@ namespace /* internal */
/* [[noreturn]]void err_thirdParent(const string& extra_name) */
/* { */
/* endwin(); */
/* cerr << "Line " << line << ": two parents are already defined, " */
/* << extra_name << " is third\n"; */
/* cerr.flush(); */
/* exit(1); */
/* endwin(); */
/* cerr << "Line " << line << ": two parents are already defined, " */
/* << extra_name << " is third\n"; */
/* cerr.flush(); */
/* exit(1); */
/* } */
[[noreturn]]void err_personUndefined(const string& name)
@@ -172,11 +172,11 @@ namespace /* internal */
/* void err_name_index(const string& name, U32 i) */
/* { */
/* endwin(); */
/* cerr << "Line " << line << " the number given after the declaration of a person can" */
/* " only be his place among the same named. " << i << " doesn't satisfy this for '" */
/* << name << '\'' << endl; */
/* exit(1); */
/* endwin(); */
/* cerr << "Line " << line << " the number given after the declaration of a person can" */
/* " only be his place among the same named. " << i << " doesn't satisfy this for '" */
/* << name << '\'' << endl; */
/* exit(1); */
/* } */
bool isNum(char c)
@@ -567,30 +567,6 @@ namespace /* internal */
--it;
break;
/* case '0' ... '9': */
case '/':
if(it+1<end)
{
if(it[1]=='/')
{
if(token_begin < it)
tokens.emplace_back(token_begin, it);
while(++it < end && *it != '\n'); /* skip comment */
token_begin = it;
--it;
}
else if(it[1]=='*')
{
if(token_begin < it)
tokens.emplace_back(token_begin, it);
while(++it < end)
if(*it=='*' && it+1<end && it[1]=='/')
break;
it+=2;
token_begin = it;
--it;
}
}
break;
default: break;
}