[Kernel] shim_utils lint fix

This commit is contained in:
Triang3l 2021-05-16 18:34:27 +03:00
parent 3a5752fcb6
commit e49e26e4a0
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ class PrimitivePointerParam : public ParamBase<uint32_t> {
}
T value() const { return *host_ptr_; }
operator T() const = delete;
operator xe::be<T> *() const { return host_ptr_; }
operator xe::be<T>*() const { return host_ptr_; }
operator bool() const { return host_ptr_ != nullptr; }
void Zero() const {
assert_not_null(host_ptr_);