diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-03 21:33:49 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-03 21:34:28 +0000 |
commit | 7d9aeb71958ceb1efad488200ee8ccf92510b583 (patch) | |
tree | a5149c182168641d1e91ed4afcb0e06ef582a579 /external/easylogging++/easylogging++.h | |
parent | Merge pull request #4821 (diff) | |
download | monero-7d9aeb71958ceb1efad488200ee8ccf92510b583.tar.xz |
easylogging++: avoid uneeded temporary std::string object
Diffstat (limited to 'external/easylogging++/easylogging++.h')
-rw-r--r-- | external/easylogging++/easylogging++.h | 2 |
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); |