mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
tymczasowe przywrócenie tekstu, porządek, wywalenie starych plików, warningi, cmake, itp.
This commit is contained in:
@@ -65,7 +65,7 @@ cParser::~cParser()
|
||||
}
|
||||
|
||||
// methods
|
||||
bool cParser::getTokens(int Count, bool ToLower, const char *Break)
|
||||
bool cParser::getTokens(unsigned int Count, bool ToLower, const char *Break)
|
||||
{
|
||||
/*
|
||||
if (LoadTraction==true)
|
||||
@@ -78,7 +78,7 @@ bool cParser::getTokens(int Count, bool ToLower, const char *Break)
|
||||
this->str("");
|
||||
this->clear();
|
||||
*/
|
||||
for (int i = 0; i < Count; ++i)
|
||||
for (unsigned int i = 0; i < Count; ++i)
|
||||
{
|
||||
std::string token = readToken(ToLower, Break);
|
||||
if( true == token.empty() ) {
|
||||
|
||||
Reference in New Issue
Block a user