Skip to content

Update boost to std #589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jan 30, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
No longer need boost.regex, boost.date_time, boost.chrono or boost.at…
…omic.
  • Loading branch information
glynos committed Jan 30, 2016
commit 22a1b0d4a1178a00629f04e47a105a4362652e18
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ add_definitions(-DBOOST_TEST_DYN_LINK)
set(Boost_USE_MULTI_THREADED ON)

find_package(Boost 1.57.0
REQUIRED system regex date_time thread filesystem program_options chrono
atomic)
REQUIRED system thread filesystem program_options)

if (CPP-NETLIB_ENABLE_HTTPS)
find_package( OpenSSL )
Expand Down
1 change: 0 additions & 1 deletion libs/network/example/http_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ int main(int argc, char* argv[]) {

if (show_headers) {
auto headers_ = response.headers();
typedef std::pair<std::string, std::string> header_type;
for (auto const& header : headers_) {
std::cout << header.first << ": " << header.second << std::endl;
}
Expand Down