We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b403ec5 commit 53a2ba3Copy full SHA for 53a2ba3
src/util.cpp
@@ -248,7 +248,7 @@ bool LogAcceptCategory(const char* category)
248
} else
249
ptrCategory.reset(new std::set<std::string>());
250
}
251
- const std::set<std::string>& setCategories = *ptrCategory.get();
+ const std::set<std::string>& setCategories = *ptrCategory;
252
253
// if not debugging everything and not debugging specific category, LogPrint does nothing.
254
if (setCategories.count(std::string("")) == 0 &&
@@ -839,4 +839,4 @@ std::string CopyrightHolders(const std::string& strPrefix)
839
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
840
841
return strCopyrightHolders;
842
-}
+}
0 commit comments