зеркало из https://github.com/mozilla/pjs.git
fixing vc6.0 compiler bug. cant have static variable called "count" and compare it using "<". dont ask.
This commit is contained in:
Родитель
90cb21d54f
Коммит
3faeabcb95
|
@ -476,7 +476,7 @@ void nsDll::BreakAfterLoad(const char *nsprPath)
|
|||
count++;
|
||||
start = ofset + 1;
|
||||
}
|
||||
while (ofset != -1 && count < 16);
|
||||
while (ofset != -1 && 16 > count); // avoiding vc6.0 compiler issue. count < thinks it is starting a template
|
||||
}
|
||||
|
||||
// Find the dllname part of the string
|
||||
|
|
Загрузка…
Ссылка в новой задаче