Remove redundant cpp file

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski 2021-10-22 16:20:36 +00:00 committed by Compute-Runtime-Automation
parent ef3f93a178
commit 257b1de14e
3 changed files with 1 additions and 16 deletions

View File

@ -34,7 +34,6 @@ set(NEO_CORE_HELPERS
${CMAKE_CURRENT_SOURCE_DIR}/compiler_hw_info_config_bdw_and_later.inl
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options_parser.cpp
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options_parser.h
${CMAKE_CURRENT_SOURCE_DIR}/completion_stamp.cpp
${CMAKE_CURRENT_SOURCE_DIR}/completion_stamp.h
${CMAKE_CURRENT_SOURCE_DIR}/constants.h
${CMAKE_CURRENT_SOURCE_DIR}/debug_helpers.h

View File

@ -1,14 +0,0 @@
/*
* Copyright (C) 2020-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/helpers/completion_stamp.h"
namespace NEO {
const uint32_t CompletionStamp::notReady = 0xFFFFFFF0;
} // namespace NEO

View File

@ -16,7 +16,7 @@ struct CompletionStamp {
uint32_t taskLevel;
FlushStamp flushStamp;
static const uint32_t notReady;
static constexpr uint32_t notReady = 0xFFFFFFF0;
};
} // namespace NEO