[util] Remove redundant call to get() on smart pointer (thread_specific_ptr)

This commit is contained in:
practicalswift 2017-01-12 22:22:50 +01:00
parent b403ec5c0f
commit 53a2ba351a

View file

@ -248,7 +248,7 @@ bool LogAcceptCategory(const char* category)
} else
ptrCategory.reset(new std::set<std::string>());
}
const std::set<std::string>& setCategories = *ptrCategory.get();
const std::set<std::string>& setCategories = *ptrCategory;
// if not debugging everything and not debugging specific category, LogPrint does nothing.
if (setCategories.count(std::string("")) == 0 &&
@ -839,4 +839,4 @@ std::string CopyrightHolders(const std::string& strPrefix)
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
}
return strCopyrightHolders;
}
}