views:

102

answers:

2

Hi, I have just compiled an open source program under VS2008, the compilation is success. But when running, the program crashes with error can be traced back to std:list. The author claimed that the program can be compiled successfully under VS2005 and VS2003, I'm quite new to VC++ thus I don't know much about any change to base library from 2005 to 2008.

Any help is really appreciate.

Boehm.

+1  A: 

This isn't remotely enough to go on, but based on your statement that it's a runtime error, I suspect that the version of visual studio isn't the problem and that an incorrect usage of std::list is.

Greg D
A: 

problem solved, i have found out a bug in the program. You was right there is a problem with the usage of std:list thank you

Boehm