Skip to content

[clang-tidy] modernize-use-using deletes (parts of) comments #159518

@tobiasleibner

Description

@tobiasleibner

Using the modernize-use-using fixes with clang-tidy 19.1.5 transformed the code

   typedef std::vector<std::pair<int, int>>  // start and end chunks for cells in a line
       VCellStartEnd;                        // (end is chunk beyond end of line)

to

    using VCellStartEnd = std::vector<std::pair<int, int>>;  // (end is chunk beyond end of line)

Note that the first part of the comment has been deleted.

Metadata

Metadata

Assignees

No one assigned

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions