Remove redundant cpp file
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
parent
ef3f93a178
commit
257b1de14e
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -16,7 +16,7 @@ struct CompletionStamp {
|
|||
uint32_t taskLevel;
|
||||
FlushStamp flushStamp;
|
||||
|
||||
static const uint32_t notReady;
|
||||
static constexpr uint32_t notReady = 0xFFFFFFF0;
|
||||
};
|
||||
|
||||
} // namespace NEO
|
||||
|
|
Loading…
Reference in New Issue