mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Revert "cgen: fix g.typ() not adding correct number of * for generic types (#10687)"
This reverts commit bfafdb69c9
.
This commit is contained in:
parent
bfafdb69c9
commit
13917dc095
@ -569,8 +569,7 @@ fn (mut g Gen) typ(t ast.Type) string {
|
||||
return styp
|
||||
}
|
||||
|
||||
fn (mut g Gen) base_type(_t ast.Type) string {
|
||||
t := g.unwrap_generic(_t)
|
||||
fn (mut g Gen) base_type(t ast.Type) string {
|
||||
share := t.share()
|
||||
mut styp := if share == .atomic_t { t.atomic_typename() } else { g.cc_type(t, true) }
|
||||
if t.has_flag(.shared_f) {
|
||||
|
Loading…
Reference in New Issue
Block a user