mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-3677 Change-Id: Ia89ba93eefbb2921ef7d64bde7ed4114a0c78e0d Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
16 lines
264 B
C++
16 lines
264 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/utilities/heap_allocator.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool operator<(const HeapChunk &hc1, const HeapChunk &hc2) {
|
|
return hc1.ptr < hc2.ptr;
|
|
}
|
|
} // namespace NEO
|