Skip to content

Commit

Permalink
Merge pull request #5116 from WalterBright/inlinemod
Browse files Browse the repository at this point in the history
trivial refactor: inlineScan => inlineScanModule
  • Loading branch information
9rnsr committed Sep 24, 2015
2 parents f8777b9 + f83b94c commit 51e7592
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/inline.d
Expand Up @@ -1842,7 +1842,7 @@ Lno:
* Params:
* m = module to scan
*/
public void inlineScan(Module m)
public void inlineScanModule(Module m)
{
if (m.semanticRun != PASSsemantic3done)
return;
Expand Down
2 changes: 1 addition & 1 deletion src/mars.d
Expand Up @@ -1526,7 +1526,7 @@ Language changes listed by -transition=id:
Module m = modules[i];
if (global.params.verbose)
fprintf(global.stdmsg, "inline scan %s\n", m.toChars());
inlineScan(m);
inlineScanModule(m);
}
}
// Do not attempt to generate output files if errors or warnings occurred
Expand Down

0 comments on commit 51e7592

Please sign in to comment.