diff options
author | Lioncash <mathew1800@gmail.com> | 2021-04-15 05:05:42 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-04-15 05:11:01 +0200 |
commit | 2a341c9969ceaa6620c89ccf102eacb8a31215e5 (patch) | |
tree | a3da6425dad51f9650e0dda54683ac45d05031b9 | |
parent | common/log: Move Log namespace into the Common namespace (diff) | |
download | yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.tar yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.tar.gz yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.tar.bz2 yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.tar.lz yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.tar.xz yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.tar.zst yuzu-2a341c9969ceaa6620c89ccf102eacb8a31215e5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/backend.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index c06364977..2e0467ef4 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -37,8 +37,11 @@ public: return backend; } - Impl(Impl const&) = delete; - const Impl& operator=(Impl const&) = delete; + Impl(const Impl&) = delete; + Impl& operator=(const Impl&) = delete; + + Impl(Impl&&) = delete; + Impl& operator=(Impl&&) = delete; void PushEntry(Class log_class, Level log_level, const char* filename, unsigned int line_num, const char* function, std::string message) { |