📄 placementnew.h
字号:
//////////////////////////////////////////////////////////////////////////////
// PlacementNew.h
//
// Definition of placement new.
//////////////////////////////////////////////////////////////////////////////
// $Id: PlacementNew.h,v 1.4 1998/12/14 19:00:23 nryan Exp $
// Copyright (C) 1998 by Network Associates, Inc.
// All rights reserved.
#ifndef Included_PlacementNew_h // [
#define Included_PlacementNew_h
////////////////
// Placement New
////////////////
inline
void *
__cdecl
operator new(size_t, void *pMem)
{
return pMem; // all too easy!
}
#endif // ] Included_PlacementNew_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -