From: Douglas Gregor (doug.gregor_at_[hidden])
Date: 2007-06-30 11:45:45


On Sat, 2007-06-30 at 17:30 +0200, Ewgenij Sokolovski wrote:
> Ah, OK. So if I get you right, the profiler does not profile inline functions in general? Independently on whether these functions are from boost.graph or not. So if I write some inline functions by myself they would not be profiled too. Do I understand it the right way?

If the compiler completely removes the functions (and their profiling
information), yes. Compiler optimizations are rather unpredictable, so I
can't tell you precisely what will happen.

  - Doug