summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-08 11:47:04 -0800
committerGitHub <noreply@github.com>2020-12-08 11:47:04 -0800
commit6057dc46e5f520b30df584e163a95bcdb349ea9b (patch)
tree6b0041105be650cd3daa79df00b9e9fb69d54a75 /src
parent00c62541292962c4ae720283b46e9e59905d7eec (diff)
parenta44ff5ed316eced426c77d28df359685590cc118 (diff)
Merge pull request #5167 from lioncash/doc-memory
memory: Resolve -Wdocumentation warning for Write()
Diffstat (limited to 'src')
-rw-r--r--src/core/memory.cpp2
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) {