mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 05:38:50 +08:00
11 lines
200 B
C
11 lines
200 B
C
#pragma once
|
|
#include "../AVSOfficeHtmlFile/src/stdafx.h"
|
|
|
|
#pragma warning(push, 4)
|
|
|
|
#define SAFE_DELETE_POINTER(_P) \
|
|
(void)(_P != NULL ? delete _P, _P = NULL : 0) \
|
|
|
|
#pragma warning(pop)
|
|
|