Browse Source

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

0.15
practicalswift 8 years ago
parent
commit
53a2ba351a
  1. 2
      src/util.cpp

2
src/util.cpp

@ -248,7 +248,7 @@ bool LogAcceptCategory(const char* category) @@ -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 &&

Loading…
Cancel
Save