Hi All,

> cat progress.cpp

#include <boost/progress.hpp>

int main( )
{
    boost::progress_timer t;

    sleep( 5 );

    return 0;
}

> g++ progress.cpp

> ./a.out
0.00 s

I was expecting a number >= 5.00 s! What am I missing?

Thx, Rob.