Skip to content

Commit

Permalink
Suppress more raw string hash warnings (#902)
Browse files Browse the repository at this point in the history
This fixes builds with Rust 1.74
  • Loading branch information
swernli authored Dec 8, 2023
1 parent 4f86416 commit 971f176
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions compiler/qsc/src/interpret/stateful/re/counts/tests.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#![allow(clippy::needless_raw_string_hashes)]

use std::convert::Into;

use crate::{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#![allow(clippy::needless_raw_string_hashes)]

#[cfg(test)]
mod tests;

Expand Down

0 comments on commit 971f176

Please sign in to comment.