diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-16 04:41:34 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-16 05:01:39 -0400 |
commit | f71c598907ea76095dd3e2a71d160ddbe5c6635c (patch) | |
tree | c8d7816de761adcbeec2d9613c1fdd0046b180f7 /src/common/CMakeLists.txt | |
parent | 29c242721a420c75e181f5a1ac583da14e9af769 (diff) |
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.
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 3d30f0e3e..fecef967b 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -128,4 +128,4 @@ endif() create_target_directory_groups(common) -target_link_libraries(common PUBLIC Boost::boost fmt microprofile) +target_link_libraries(common PUBLIC fmt microprofile) |