Skip to content

Commit

Permalink
Change "#ifdef WIN32" to "#ifdef _WIN32" (#19254)
Browse files Browse the repository at this point in the history
### Description
`_WIN32` is a standard macro listed at
https://learn.microsoft.com/en-us/cpp/preprocessor/predefined-macros?view=msvc-170
. But `WIN32` is not.
  • Loading branch information
snnn authored Jan 24, 2024
1 parent a33b5bd commit a28abeb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "onnxruntime/core/session/onnxruntime_c_api.h"
#include "OrtJniUtil.h"
#include "ai_onnxruntime_OrtSession_SessionOptions.h"
#ifdef WIN32
#ifdef _WIN32
#include <Windows.h>
#else
#include <dlfcn.h>
Expand Down Expand Up @@ -318,7 +318,7 @@ JNIEXPORT void JNICALL Java_ai_onnxruntime_OrtSession_00024SessionOptions_closeC

// Iterate the handles, calling the appropriate close function
for (jint i = 0; i < numHandles; i++) {
#ifdef WIN32
#ifdef _WIN32
FreeLibrary((void*)handles[i]);
#else
dlclose((void*)handles[i]);
Expand Down
2 changes: 1 addition & 1 deletion onnxruntime/core/mlas/lib/amx_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Module Name:

#include "mlasi.h"

#ifdef WIN32
#ifdef _WIN32
#define tile_dpbssd(dst, src1, src2) _tile_dpbssd(dst, src1, src2)

#define tile_dpbsud(dst, src1, src2) _tile_dpbsud(dst, src1, src2)
Expand Down

0 comments on commit a28abeb

Please sign in to comment.