Skip to content

Commit 8db8a13

Browse files
committed
Fix missing semi-colon.
1 parent c191d3b commit 8db8a13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/clang-win.jam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ rule init ( version ? : command * : options * )
143143
local vspath = [ SPLIT_BY_CHARACTERS [ SHELL
144144
"\"$(vswhere)\" -latest -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath"
145145
] : "\r\n" ] ;
146-
vspath = $(vspath[1])
146+
vspath = $(vspath[1]) ;
147147
.notice "$(arch)-$(addr):" "using VS tools in '$(vspath)'" ;
148148
local msvcpath = [ path.glob [ path.make "$(vspath)\\VC\\Tools\\MSVC" ] : * ] ;
149149
msvcpath = [ path.glob "$(msvcpath[-1])/bin" : Host* ] ;

0 commit comments

Comments
 (0)