]> git.ipfire.org Git - thirdparty/squid.git/blame - src/SquidNew.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / SquidNew.cc
CommitLineData
f95fe6ed 1/*
f70aedc4 2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
f95fe6ed 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
f95fe6ed 7 */
8
bbc27441
AJ
9/* DEBUG: none Memory Allocation */
10
582c2af2 11#include "squid.h"
00177188 12
a45f2153 13#if !defined(__clang__) && !defined(__SUNPRO_CC)
00177188
FC
14
15#include <new>
39cca4e1
AR
16
17void *operator new(size_t size)
00177188
FC
18{
19 return xmalloc(size);
20}
39cca4e1 21void operator delete(void *address)
00177188 22{
39cca4e1 23 xfree(address);
00177188 24}
f53969cc 25
39cca4e1 26#endif /* !defined(__clang__) */
915eb719 27