From e49e26e4a036a5b8a824af47c24804f718efe4ec Mon Sep 17 00:00:00 2001 From: Triang3l Date: Sun, 16 May 2021 18:34:27 +0300 Subject: [PATCH] [Kernel] shim_utils lint fix --- src/xenia/kernel/util/shim_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/kernel/util/shim_utils.h b/src/xenia/kernel/util/shim_utils.h index 474433547..2aa32064f 100644 --- a/src/xenia/kernel/util/shim_utils.h +++ b/src/xenia/kernel/util/shim_utils.h @@ -252,7 +252,7 @@ class PrimitivePointerParam : public ParamBase { } T value() const { return *host_ptr_; } operator T() const = delete; - operator xe::be *() const { return host_ptr_; } + operator xe::be*() const { return host_ptr_; } operator bool() const { return host_ptr_ != nullptr; } void Zero() const { assert_not_null(host_ptr_);