fixed warnings, back to int warning in debugstream due to 64 bit

This commit is contained in:
Dhanya Maliakal
2017-11-17 08:53:05 +01:00
parent c1e735c1b4
commit 2569ffbf10
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ protected:
m_string.append(p, p + n);
//changed from uint because of 64 bit
unsigned int pos = 0;
int pos = 0;
while (pos != string::npos){
pos = m_string.find('\n');