📄 del_sofn.cpp
字号:
/*****************************************************************************/
/* del_sofn v2.54 */
/* Copyright (c) 1996-2004 Texas Instruments Incorporated */
/*****************************************************************************/
#include <new>
/****************************************************************************/
/* */
/* OPERATOR DELETE() - NO EXCEPTION VERSION OF THE DEFAULT GLOBAL */
/* DEALLOCATION FUNCTION FOR SINGLE OBJECTS. */
/* */
/****************************************************************************/
void operator delete(void *ptr, const std::nothrow_t&) // throw()
{
if (ptr) std::free(ptr);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -