Revert "cgen: fix g.typ() not adding correct number of * for generic types (#10687)"

This reverts commit bfafdb69c9.
pull/10702/head
Delyan Angelov 2021-07-08 22:15:44 +03:00
parent bfafdb69c9
commit 13917dc095
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 2 deletions

View File

@ -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) {