Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit b7e90b3

Browse files
authored
Merge branch 'main' into instance-config
2 parents 4be3bf0 + b03d420 commit b7e90b3

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/agent/debugger/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
// Licensed under the MIT License.
33

44
#![cfg(windows)]
5+
// Allow safe functions that take `HANDLE` arguments.
6+
//
7+
// Though they type alias raw pointers, they are opaque. In the future, we will
8+
// wrap them in a newtype. This will witness that they were obtained via win32
9+
// API calls or documented pseudohandle construction.
10+
#![allow(clippy::not_unsafe_ptr_arg_deref)]
511

612
mod breakpoint;
713
pub mod dbghelp;

src/agent/win-util/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
// Licensed under the MIT License.
33

44
#![cfg(windows)]
5+
// Allow safe functions that take `HANDLE` arguments.
6+
//
7+
// Though they type alias raw pointers, they are opaque. In the future, we will
8+
// wrap them in a newtype. This will witness that they were obtained via win32
9+
// API calls or documented pseudohandle construction.
10+
#![allow(clippy::not_unsafe_ptr_arg_deref)]
511

612
#[macro_use]
713
pub mod macros;

0 commit comments

Comments
 (0)