aboutsummaryrefslogtreecommitdiff
path: root/external/easylogging++/easylogging++.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-12-03 21:33:49 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-12-03 21:34:28 +0000
commit7d9aeb71958ceb1efad488200ee8ccf92510b583 (patch)
treea5149c182168641d1e91ed4afcb0e06ef582a579 /external/easylogging++/easylogging++.h
parentMerge pull request #4821 (diff)
downloadmonero-7d9aeb71958ceb1efad488200ee8ccf92510b583.tar.xz
easylogging++: avoid uneeded temporary std::string object
Diffstat (limited to 'external/easylogging++/easylogging++.h')
-rw-r--r--external/easylogging++/easylogging++.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h
index 046252a5b..9edec9317 100644
--- a/external/easylogging++/easylogging++.h
+++ b/external/easylogging++/easylogging++.h
@@ -2463,7 +2463,7 @@ class VRegistry : base::NoCopy, public base::threading::ThreadSafe {
void setModules(const char* modules);
- bool allowed(Level level, const char* category);
+ bool allowed(Level level, const std::string &category);
bool allowed(base::type::VerboseLevel vlevel, const char* file);