5 Jan
2003
5 Jan
'03
2:42 a.m.
On Friday, January 3, 2003, at 10:34 PM, Black Ice wrote:
Can I assume it's a bug of boost.date_time?
No.
using namespace std;
#include
#include
The above code has an error. You must not do a "using namespace" before including a header file and expect that to work. I recommend that you move the using namespace directives so they are all below all your includes. -- Darin