cgen: remove lefover println calls from vlib/v/gen/c/array.v (#20076)

This commit is contained in:
Felipe Pena 2023-12-03 16:04:04 -03:00 committed by GitHub
parent f9f6ee756d
commit c047a49511
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -608,8 +608,6 @@ fn (mut g Gen) gen_array_sort(node ast.CallExpr) {
// println('filter s="$s"')
rec_sym := g.table.final_sym(node.receiver_type)
if rec_sym.kind != .array {
println(node.name)
println(g.typ(node.receiver_type))
// println(rec_sym.kind)
verror('.sort() is an array method')
}