Skip to content

Commit 8c9d8c3

Browse files
committed
Avoid unnecessary global variable
1 parent 7cdb232 commit 8c9d8c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: win32/build/confutils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3042,7 +3042,7 @@ function toolset_setup_project_tools()
30423042
ERROR('sed is required')
30433043
}
30443044

3045-
RE2C = PATH_PROG('re2c');
3045+
var RE2C = PATH_PROG('re2c');
30463046
if (RE2C) {
30473047
var RE2CVERS = probe_binary(RE2C, "version");
30483048
STDOUT.WriteLine(' Detected re2c version ' + RE2CVERS);

0 commit comments

Comments
 (0)