tymczasowe przywrócenie tekstu, porządek, wywalenie starych plików, warningi, cmake, itp.

This commit is contained in:
VB
2017-02-14 19:13:48 +01:00
parent 95e040f874
commit 92f39cd9b9
194 changed files with 612 additions and 74277 deletions

View File

@@ -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() ) {