I'm using Very Sleepy to profile some C++ code, and I notice that in the Source view, where it shows the red line-by-lime time-spent measurements, there are always measurement on the lines that only have the method's open or close curly brace, in some cases these were pretty high compared to the other lines of code in the function.
My initial assumption it's showing the time spent pushing the method parameters into the stack for the opening curly brace, and the time spent popping the stack for the closing curly brace. Is this true?