compiler: remove unneeded blank ident assignment (#2634)

pull/2635/head
joe-conigliaro 2019-11-04 10:59:18 +11:00 committed by GitHub
parent e3d8ab5849
commit a6a233df6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -174,8 +174,8 @@ fn (v mut V) cc() {
println('$path not found... building module $imp')
if path.ends_with('vlib/ui.o') {
println('copying ui...')
_ = os.cp('$vdir/thirdparty/ui/ui.o', path) or { panic('error copying ui files') }
_ = os.cp('$vdir/thirdparty/ui/ui.vh', v_modules_path +
os.cp('$vdir/thirdparty/ui/ui.o', path) or { panic('error copying ui files') }
os.cp('$vdir/thirdparty/ui/ui.vh', v_modules_path +
'/vlib/ui.vh') or { panic('error copying ui files') }
} else {