0

i have got errors on visual studio 2010. i m using c++ and use opencv

Error C2039: 'exit' : is not a member of '`global namespace'' error C2873: 'exit' : symbol cannot be used in a using-declaration

4

1 に答える 1

2

You should

#include <stdlib.h>

before using ::exit().

于 2012-12-10T18:29:05.457 に答える