From a44ff5ed316eced426c77d28df359685590cc118 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 8 Dec 2020 12:44:55 -0500 Subject: memory: Resolve -Wdocumentation warning for Write() Write() doesn't return anything, so the @returns tag shouldn't be present. --- src/core/memory.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/memory.cpp b/src/core/memory.cpp index b88aa5c40..b7f21698f 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -667,8 +667,6 @@ struct Memory::Impl { * @tparam T The data type to write to memory. This type *must* be * trivially copyable, otherwise the behavior of this function * is undefined. - * - * @returns The instance of T write to the specified virtual address. */ template void Write(const VAddr vaddr, const T data) { -- cgit v1.2.3