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

Fix SetLayout to error with invalid int list input #11653

Merged
merged 3 commits into from
Jan 29, 2024

Commits on Jan 26, 2024

  1. Fix SetLayout to error with invalid int list input

    This commit fixes an issue in the SetLayout transpiler pass when an
    integer list is specified nothing was checking that the integer list
    contained unique entries. Previously if a list containing duplciate
    entries was passed in this would result in an invalid Layout object
    being set on the property set. This would cause a cryptic error message
    by later transpiler passes that would try and use that invalid Layout.
    This commit fixes this by detecting if there are duplicate entries in
    the int list and raising an exception directly.
    mtreinish committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    3282fc0 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Configuration menu
    Copy the full SHA
    11b9b81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4799c86 View commit details
    Browse the repository at this point in the history