Internals: Fix missing static. No functional change.

Signed-off-by: Wilson Snyder <wsnyder@wsnyder.org>
This commit is contained in:
Patrick Stewart 2018-10-24 19:40:07 -04:00 committed by Wilson Snyder
parent 304a24d03a
commit 74a92e739f

View File

@ -58,7 +58,7 @@ public:
static string topClassName() { // Return name of top wrapper module
return v3Global.opt.prefix();
}
AstCFile* newCFile(const string& filename, bool slow, bool source) {
static AstCFile* newCFile(const string& filename, bool slow, bool source) {
AstCFile* cfilep = new AstCFile(v3Global.rootp()->fileline(), filename);
cfilep->slow(slow);
cfilep->source(source);