Removed use of the deprecated "register" keyword

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4340.html
This commit is contained in:
Henry Weller
2015-06-30 10:26:44 +01:00
parent 6f53722dab
commit 0d024dd37d
86 changed files with 539 additions and 539 deletions

View File

@ -279,7 +279,7 @@ int main(int argc, char *argv[])
sqrMergeTol /= 10.0;
register bool found = false;
bool found = false;
// N-squared point search over all points of all faces of
// master block over all point of all faces of slave block
@ -354,7 +354,7 @@ int main(int argc, char *argv[])
}
register bool changedPointMerge = false;
bool changedPointMerge = false;
label nPasses = 0;
do

View File

@ -604,7 +604,7 @@ endOfSection {space}")"{space}
<readCellData>{space}{lbrac} {
// Quickly scan to the end of the cell data block and discard
register int c;
int c;
while ((c = yyinput()) != 0 && c != ')')
{}
}