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 dropping_references warning #388

Merged
merged 5 commits into from
Oct 20, 2023

Commits on Oct 20, 2023

  1. Update UI tests

    newAM committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    e18c752 View commit details
    Browse the repository at this point in the history
  2. Fix dropping_references warning

    newAM committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    3d876e2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d0f2e2 View commit details
    Browse the repository at this point in the history
  4. enable github merge queue.

    Dirbaio committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    199a8d8 View commit details
    Browse the repository at this point in the history
  5. Fix tsan tests.

    from [this](https://doc.rust-lang.org/beta/unstable-book/compiler-flags/sanitizer.html#threadsanitizer)
    
    > To work correctly ThreadSanitizer needs to be "aware" of all synchronization operations in a program. It generally achieves that through \[...\] and compile time instrumentation (e.g. atomic operations). Using it without instrumenting all the program code can lead to false positive reports.
    
    and the example uses -Zbuild-std ... of course, std has to be instrumented. Adding -Zbuild-std fixes it, indeed.
    Dirbaio committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    a4e8f82 View commit details
    Browse the repository at this point in the history