AlexCouch / jewl-go

jewl-go is a go friendly performance analysis library
1 stars 1 forks source link

Multiple calls to the same function not supported! #1

Closed AlexCouch closed 9 months ago

AlexCouch commented 9 months ago

When calling a function multiple times, it will just override the current index in the header.

Solution Change the header from map[string]int to map[string][]int and append the frame index to the function's header entry.