From 524efcab7dd121f4e3ce1b68b8db2242acb4995e Mon Sep 17 00:00:00 2001 From: gibbed Date: Sat, 1 May 2021 12:19:18 -0500 Subject: [PATCH] [Kernel] Lint fix. --- src/xenia/kernel/util/shim_utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xenia/kernel/util/shim_utils.h b/src/xenia/kernel/util/shim_utils.h index 126358b17..474433547 100644 --- a/src/xenia/kernel/util/shim_utils.h +++ b/src/xenia/kernel/util/shim_utils.h @@ -2,7 +2,7 @@ ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** - * Copyright 2020 Ben Vanik. All rights reserved. * + * Copyright 2021 Ben Vanik. All rights reserved. * * Released under the BSD license - see LICENSE in the root for more details. * ****************************************************************************** */ @@ -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_);