我无法弄清楚我做错了什么,我收到第 75 行的错误消息:
apr_status_t chdir(const char* directory);
const char* getcwd() const; \\ln 75
static bool exists(const char *progname);
这是:
process.h(75): warning C4003: not enough actual parameters for macro 'getcwd'
process.h(75): error C2059: syntax error : ','
这是 getcwd() 的定义
const char* AprProcess::getcwd() const {
return mpWorkingDir ? mpWorkingDir : "";
}
你有什么想法?我猜是有声明或我称之为getcwd()的方式。(我将我的代码移动到 VS 2010)