summaryrefslogtreecommitdiffstats
path: root/src/common/logging/backend.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-20 21:27:17 +0200
committerLioncash <mathew1800@gmail.com>2018-07-20 21:27:20 +0200
commit457d1b4490dbc293246f372532a81a9e90d366c4 (patch)
tree93eb2026cadad03ab9d52be843a9446ff180ecf0 /src/common/logging/backend.h
parentMerge pull request #740 from Subv/acc_crash (diff)
downloadyuzu-457d1b4490dbc293246f372532a81a9e90d366c4.tar
yuzu-457d1b4490dbc293246f372532a81a9e90d366c4.tar.gz
yuzu-457d1b4490dbc293246f372532a81a9e90d366c4.tar.bz2
yuzu-457d1b4490dbc293246f372532a81a9e90d366c4.tar.lz
yuzu-457d1b4490dbc293246f372532a81a9e90d366c4.tar.xz
yuzu-457d1b4490dbc293246f372532a81a9e90d366c4.tar.zst
yuzu-457d1b4490dbc293246f372532a81a9e90d366c4.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/backend.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h
index 57cdf6b2d..45609a535 100644
--- a/src/common/logging/backend.h
+++ b/src/common/logging/backend.h
@@ -7,6 +7,7 @@
#include <cstdarg>
#include <memory>
#include <string>
+#include <string_view>
#include <utility>
#include "common/file_util.h"
#include "common/logging/filter.h"
@@ -106,9 +107,9 @@ private:
void AddBackend(std::unique_ptr<Backend> backend);
-void RemoveBackend(const std::string& backend_name);
+void RemoveBackend(std::string_view backend_name);
-Backend* GetBackend(const std::string& backend_name);
+Backend* GetBackend(std::string_view backend_name);
/**
* Returns the name of the passed log class as a C-string. Subclasses are separated by periods