diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-12-31 15:37:28 -0600 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-31 15:37:28 -0600 |
commit | f03f4ddb9682c57260c2f328cd13875613495e65 (patch) | |
tree | 304b1cdc43f52ecc6e67fa246ad174f0bafa2fda /external/easylogging++/easylogging++.h | |
parent | Merge pull request #4935 (diff) | |
parent | easylogging++: avoid uneeded temporary std::string object (diff) | |
download | monero-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++.h | 2 |
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); |