Nitpicky style change: use 'for(;;)' construct instead of 'while(true)' in the code.

This commit is contained in:
Edoardo Prezioso 2012-03-24 21:47:52 +01:00
parent e6bcab7c35
commit 28431da0ae
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ unsigned int ThreadExecutor::check()
std::map<int, std::string> pipeFile; std::map<int, std::string> pipeFile;
size_t processedsize = 0; size_t processedsize = 0;
std::map<std::string, size_t>::const_iterator i = _files.begin(); std::map<std::string, size_t>::const_iterator i = _files.begin();
while (true) { for (;;) {
// Start a new child // Start a new child
if (i != _files.end() && rpipes.size() < _settings._jobs) { if (i != _files.end() && rpipes.size() < _settings._jobs) {
int pipes[2]; int pipes[2];

View File

@ -383,7 +383,7 @@ int Token::multiCompare(const char *haystack, const char *needle)
bool emptyStringFound = false; bool emptyStringFound = false;
const char *needlePointer = needle; const char *needlePointer = needle;
while (true) { for(;;) {
if (*needlePointer == *haystack) { if (*needlePointer == *haystack) {
if (*needlePointer == '\0') if (*needlePointer == '\0')
return 1; return 1;