Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Jul 26, 2023
1 parent 9a4445a commit 8f4cb27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/xtd.core.native.macos/src/xtd/native/macos/thread.mm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using namespace xtd::native;

bool thread::cancel(intptr_t handle) {
bool thread::cancel(intmax_t handle) {
/// @todo Make mplementation for macOS
return false;
}
2 changes: 1 addition & 1 deletion src/xtd.core.native.unix/src/xtd/native/unix/thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

using namespace xtd::native;

bool thread::cancel(intptr_t handle) {
bool thread::cancel(intmax_t handle) {
/// @todo Make mplementation for unix
return false;
}
2 changes: 1 addition & 1 deletion src/xtd.core.native.win32/src/xtd/native/win32/thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using namespace xtd::native;

bool thread::cancel(intptr_t handle) {
bool thread::cancel(intmax_t handle) {
/// @todo Make mplementation for Windows
return false;
}

0 comments on commit 8f4cb27

Please sign in to comment.