summaryrefslogtreecommitdiffstats
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorscurest <scurest@users.noreply.github.com>2016-06-25 20:26:21 +0200
committerscurest <scurest@users.noreply.github.com>2016-06-25 20:26:21 +0200
commit0f9274fe2426e3b454d93f07e849243d51991cf8 (patch)
tree7fb68a81a0742e1beb59baeda3f60ffc3ef87f78 /src/common/logging/backend.cpp
parentMerge pull request #1926 from JayFoxRox/gpl (diff)
downloadyuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar
yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.gz
yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.bz2
yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.lz
yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.xz
yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.tar.zst
yuzu-0f9274fe2426e3b454d93f07e849243d51991cf8.zip
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index d7008fc66..0b2fabec9 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -117,7 +117,7 @@ Entry CreateEntry(Class log_class, Level log_level,
vsnprintf(formatting_buffer.data(), formatting_buffer.size(), format, args);
entry.message = std::string(formatting_buffer.data());
- return std::move(entry);
+ return entry;
}
static Filter* filter = nullptr;