[util] Remove redundant call to get() on smart pointer (thread_specific_ptr)
This commit is contained in:
parent
b403ec5c0f
commit
53a2ba351a
1 changed files with 2 additions and 2 deletions
|
@ -248,7 +248,7 @@ bool LogAcceptCategory(const char* category)
|
||||||
} else
|
} else
|
||||||
ptrCategory.reset(new std::set<std::string>());
|
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 not debugging everything and not debugging specific category, LogPrint does nothing.
|
||||||
if (setCategories.count(std::string("")) == 0 &&
|
if (setCategories.count(std::string("")) == 0 &&
|
||||||
|
|
Loading…
Add table
Reference in a new issue