- 论坛徽章:
- 0
|
错误信息是:
Error (future) 251: "./das/das.cpp", line 572 # An object cannot be deleted using a pointer of type 'void *'
since the type of the object allocated is unknown. Either delete the object using the allocated type or
call operator delete directly.
if ( tempPP != NULL ) delete []tempPP;
^^^^^^
Warning: 1 future errors were detected and ignored. Add a '+p' option to detect and fix them before they become fatal errors in a future release. Behavior of this ill-formed program is not guaranteed to match that of a well-formed program
出错的程序代码是:
//释放空间
void das_free(void *tempPP){
if ( tempPP != NULL ) delete []tempPP;
return;
}
是从WINDOWS下的程序移植过来的,难道非要直接delete,不能
用这个封装的函数?如果改相关的代码的话,那么会有些麻烦,不但
我的代码要改,还要让接口另一边的同事改。有没有更好的封装形式
以避免这个error?看出错信息似乎说运行时无法真的释放指针所指
的空间。 |
|