mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 17:41:26 +08:00
Rename r_pod_cast function to safePodCast
Rename is necessary, because NEO uses camelCase convention for function names. Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
4aa7cc527a
commit
d69bf76282
@@ -11,7 +11,7 @@
|
||||
|
||||
namespace NEO {
|
||||
template <typename To, typename From>
|
||||
constexpr To r_pod_cast(From *f) { // NOLINT(readability-identifier-naming)
|
||||
constexpr To safePodCast(From *f) {
|
||||
typedef typename std::remove_pointer<From>::type FromType;
|
||||
typedef typename std::remove_pointer<To>::type ToType;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user