aboutsummaryrefslogtreecommitdiff
path: root/external/easylogging++/easylogging++.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-12-31 15:37:28 -0600
committerluigi1111 <luigi1111w@gmail.com>2018-12-31 15:37:28 -0600
commitf03f4ddb9682c57260c2f328cd13875613495e65 (patch)
tree304b1cdc43f52ecc6e67fa246ad174f0bafa2fda /external/easylogging++/easylogging++.h
parentMerge pull request #4935 (diff)
parenteasylogging++: avoid uneeded temporary std::string object (diff)
downloadmonero-f03f4ddb9682c57260c2f328cd13875613495e65.tar.xz
Merge pull request #4936
7d9aeb7 easylogging++: avoid uneeded temporary std::string object (moneromooo-monero)
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 acf2a7674..1e27f62a6 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);