Skip to content

Commit

Permalink
fix: windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
blemeill committed Jun 15, 2024
1 parent 1f39b01 commit e346818
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
"rust.useNewErrorFormat": true,
"terminal.integrated.env.osx": {
"DATABASE_URL":"sqlite://${workspaceFolder}/db_v2.sqlite3"
}
},
"terminal.integrated.env.windows": {
"DATABASE_URL":"sqlite://${workspaceFolder}/db_v2.sqlite3"
},
}
2 changes: 1 addition & 1 deletion libs/hbb_common/src/platform/windows.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::{
collections::VecDeque,
os::windows::raw::HANDLE,
sync::{Arc, Mutex},
time::Instant,
};
use winapi::um::winnt::HANDLE;
use winapi::{
shared::minwindef::{DWORD, FALSE, TRUE},
um::{
Expand Down

0 comments on commit e346818

Please sign in to comment.