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

More gradual fmt conversion #2649

Merged
merged 2 commits into from Jul 30, 2020
Merged

Commits on Jul 28, 2020

  1. More gradual fmt conversion

    Another step toward switching to std::format notation.
    
    The basic strategy is to make sure that all the classes that have
    errorf (etc) methods using printf notation will also have errorfmt
    (etc) methods using std::format notation. These will coexist for a
    while to let people switch, before the printf ones will be marked
    deprecated and then eventually removed.
    
    In some cases where the methods aren't really part of the public
    API, but only are used internally, we are already skipping to the
    deprecation marking.
    
    Signed-off-by: Larry Gritz <lg@larrygritz.com>
    lgritz committed Jul 28, 2020
    Copy the full SHA
    4439241 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2020

  1. Function rename for clarity

    Signed-off-by: Larry Gritz <lg@larrygritz.com>
    lgritz committed Jul 30, 2020
    Copy the full SHA
    fc709da View commit details
    Browse the repository at this point in the history