mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
19 lines
299 B
C++
19 lines
299 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
namespace IoctlToStringHelper {
|
|
std::string getIoctlParamStringRemaining(int param) {
|
|
return std::to_string(param);
|
|
}
|
|
} // namespace IoctlToStringHelper
|
|
|
|
} // namespace NEO
|