2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Boost Build code cleanup - minor stylistic comment change.

[SVN r79146]
This commit is contained in:
Jurko Gospodnetić
2012-06-27 19:55:44 +00:00
parent 6faebead4d
commit 4dd3ab2155

View File

@@ -114,11 +114,11 @@ class res-scanner : scanner
local quoted = [ regex.transform $(matches) : "#include[ ]*\"([^\"]+)\"" ] ;
local res = [ regex.transform $(matches) : "[^ ]+[ ]+(BITMAP|CURSOR|FONT|ICON|MESSAGETABLE|RT_MANIFEST)[ ]+(([^ \"]+)|\"([^\"]+)\")" : 3 4 ] ;
# Icons and other includes may referenced as
# Icons and other includes may be referenced as
#
# IDR_MAINFRAME ICON "res\\icon.ico"
#
# so we have to replace double backslashes to single ones.
# so we have to replace double backslashes with single ones.
res = [ regex.replace-list $(res) : "\\\\\\\\" : "/" ] ;
# CONSIDER: the new scoping rules seem to defeat "on target" variables.