compute-runtime/runtime/program/evaluate_unhandled_token.cpp

17 lines
255 B
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/program/program.h"
namespace NEO {
bool Program::isSafeToSkipUnhandledToken(unsigned int token) const {
return false;
}
} // namespace NEO