Skip to content
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

Replace deprecated binder2nd and binder1st #1287

Merged
merged 5 commits into from
Nov 7, 2017

Commits on Nov 1, 2017

  1. Replace deprecated binder2nd

    binder2nd generates error in c++17
    
    Replace by lambdas when possible and with std::function when the type is
    required.
    
    decltype(lambda) does not work, so we bind the lambda to a std::function.
    
    Other option is to use std::bind and std::placeholders, but it is harder to read the code IMO.
    
    FIX DGtal-team#1221
    phcerdan committed Nov 1, 2017
    Configuration menu
    Copy the full SHA
    e869b98 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2017

  1. Configuration menu
    Copy the full SHA
    24b3e9c View commit details
    Browse the repository at this point in the history
  2. Remove binder1st.

    Use std::bind instead of lambdas in examples.
    phcerdan committed Nov 2, 2017
    Configuration menu
    Copy the full SHA
    e4b3d4b View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2017

  1. Configuration menu
    Copy the full SHA
    0489178 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2017

  1. Add change log entry.

    phcerdan committed Nov 6, 2017
    Configuration menu
    Copy the full SHA
    2053aff View commit details
    Browse the repository at this point in the history