Skip to content

fix VS2013 compile issues #711

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

Closed
wants to merge 2 commits into from
Closed
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
remove "thow()" to make VS2013 compile
VS2013 compile error:

error C2610: 'boost::network::http::impl::async_client<Tag,version_major,version_minor>::~async_client(void) throw()' : is not a special member function which can be defaulted	c:\work\workspaces\libs\cpp-netlib\include\boost\network\protocol\http\client\async_impl.hpp	72	1	CPClient
  • Loading branch information
randydu authored Nov 24, 2016
commit cc9bcf9e56c00c15190cb19b28301f81eaf0fedc
2 changes: 1 addition & 1 deletion boost/network/protocol/http/client/async_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct async_client
lifetime_thread_.reset(new std::thread([this]() { service_.run(); }));
}

~async_client() throw() = default;
~async_client() = default;

void wait_complete() {
sentinel_.reset();
Expand Down