Skip to content

replace Printf with std::format where possible #726

@rmpowell77

Description

@rmpowell77

Noticed that we have this in SetupMarchers.cpp:186

            for (int i = 0; i < n; ++i) {
                wxString buffer;
                if (letr >= 26) {
                    buffer.Printf(wxT("%c%c%u"), 'A' + letr - 26, 'A' + letr - 26, i);
                } else {
                    buffer.Printf(wxT("%c%u"), 'A' + letr, i);

We should try to replace Printf with std::format where we can.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions