refactor: remove using from header files
This commit is contained in:
parent
26d3839832
commit
ad8a9ada83
9 changed files with 32 additions and 25 deletions
|
@ -1,10 +1,12 @@
|
|||
#include "grouped_finder.h"
|
||||
|
||||
#include <forward_list>
|
||||
#include <mutex>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
using std::mutex, std::vector, std::thread, std::lock_guard;
|
||||
using std::mutex, std::vector, std::thread, std::lock_guard, std::string,
|
||||
std::forward_list, std::string_view;
|
||||
|
||||
GroupedFinder::GroupedFinder(const std::vector<string> &word_list) {
|
||||
for (const auto &word : word_list) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue