From ec1c69258a548b6d5d5e0bcaf8f6302d2eb0cc40 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 14 May 2019 13:40:05 -0400 Subject: [PATCH] video_core/engines/engine_upload: Remove unnecessary const on parameters in function declarations These only apply in the definition of the function. They can be omitted from the declaration. --- src/video_core/engines/engine_upload.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/engines/engine_upload.h b/src/video_core/engines/engine_upload.h index d3ffd6952..56809ec58 100644 --- a/src/video_core/engines/engine_upload.h +++ b/src/video_core/engines/engine_upload.h @@ -57,8 +57,8 @@ public: State(MemoryManager& memory_manager, Registers& regs); ~State() = default; - void ProcessExec(const bool is_linear); - void ProcessData(const u32 data, const bool is_last_call); + void ProcessExec(bool is_linear); + void ProcessData(u32 data, bool is_last_call); private: u32 write_offset = 0;