Thuyet
Thuyet
Yes, I modified some codes as below. Hope can help :) ``` template class threadsafe_lookup_table { private: class bucket_type { public: using bucket_value = std::pair; using bucket_data = std::list; using...
I got the same issues I was trying to use boost with cmake: ``` cmake_minimum_required(VERSION 3.15) include(FetchContent) set(BOOST_ENABLE_CMAKE ON) FetchContent_Declare( boostorg GIT_REPOSITORY https://github.com/boostorg/boost.git GIT_TAG "boost-1.76.0" ) FetchContent_GetProperties(boostorg) if (NOT boostorg_POPULATED)...