common/thread_queue_list: Remove unnecessary dependency on boost

We really don't need to pull in several headers of boost related
machinery just to perform the erase-remove idiom (particularly with
C++20 around the corner, which adds universal container std::erase and
std::erase_if, which we can just use instead).

With this, we don't need to link in anything boost-related into common.
This commit is contained in:
Lioncash 2019-03-16 04:41:34 -04:00 committed by fearlessTobi
parent 17c0e903db
commit bd4c04aec1
2 changed files with 4 additions and 4 deletions

View file

@ -107,7 +107,7 @@ endif()
create_target_directory_groups(common)
target_link_libraries(common PUBLIC Boost::boost fmt microprofile)
target_link_libraries(common PUBLIC fmt microprofile)
if (ARCHITECTURE_x86_64)
target_link_libraries(common PRIVATE xbyak)
endif()