Skip to content

Several fixes to address OS X breakage in master #595

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 3 commits into from
Feb 8, 2016

Conversation

deanberris
Copy link
Member

The changes centre around how we're using std::shared_ptr<...> which has a stricter implementation in libc++ than in libstdc++ or Boost. Essentially, instead of doing:

shared_ptr.reset(new derived_type(...));

We do:

shared_ptr = std::make_shared<derived_type>(...);

glynos added a commit that referenced this pull request Feb 8, 2016
Several fixes to address OS X breakage in master
@glynos glynos merged commit 71227af into cpp-netlib:master Feb 8, 2016
@deanberris deanberris deleted the osx-fixes branch February 8, 2016 10:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants