1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cgen: fix _ = ...

This commit is contained in:
Alexander Medvednikov
2020-04-08 00:46:16 +02:00
parent 7406abe3b6
commit 2fbed2f880
3 changed files with 20 additions and 25 deletions

View File

@ -22,7 +22,6 @@ fn cerror(e string){
eprintln('\nerror: $e')
}
[inline]
fn vmod_content(name, desc string) string {
return [
'#V Project#\n',
@ -34,7 +33,6 @@ fn vmod_content(name, desc string) string {
].join('\n')
}
[inline]
fn main_content() string {
return [
'module main\n',
@ -44,7 +42,6 @@ fn main_content() string {
].join('\n')
}
[inline]
fn gen_gitignore(name string) string {
return [
'main',