diff options
author | Lioncash <mathew1800@gmail.com> | 2020-12-08 12:44:55 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-12-08 12:44:58 -0500 |
commit | a44ff5ed316eced426c77d28df359685590cc118 (patch) | |
tree | 3db9685291e1bc4429313c5c812c83f994b14f17 | |
parent | 3415890dd5c6539a7c7b6e02bf7ce5df4533133c (diff) |
memory: Resolve -Wdocumentation warning for Write()
Write() doesn't return anything, so the @returns tag shouldn't be
present.
-rw-r--r-- | src/core/memory.cpp | 2 |
1 files changed, 0 insertions, 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 <typename T> void Write(const VAddr vaddr, const T data) { |